From 0e2353f47d7d0fb5953755d77c4293b1e67f66e5 Mon Sep 17 00:00:00 2001 From: MillenniumFalconMechanic Date: Wed, 29 Apr 2026 10:26:23 -0700 Subject: [PATCH 1/9] feat: add static analytics site generator for all data-browser apps #4779 Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 5 + .../analytics/static_site/README.md | 97 ++ .../analytics/static_site/__init__.py | 4 + .../analytics/static_site/export.py | 180 ++++ .../analytics/static_site/fetch.py | 284 ++++++ .../analytics/static_site/generator.py | 87 ++ .../analytics/static_site/resolve.py | 76 ++ .../analytics/static_site/template/index.html | 857 ++++++++++++++++++ analytics/analytics_package/setup.py | 3 +- analytics/anvil-catalog-sheets/constants.py | 4 +- .../generate_static_site.py | 36 + analytics/anvil-explorer-sheets/constants.py | 4 +- .../generate_static_site.py | 95 ++ analytics/anvil-explorer-sheets/utils.py | 2 +- analytics/hca-explorer-sheets/constants.py | 4 +- .../generate_static_site.py | 95 ++ .../lungmap-analytics/sheets/constants.py | 4 +- .../sheets/generate_static_site.py | 96 ++ 18 files changed, 1923 insertions(+), 10 deletions(-) create mode 100644 analytics/analytics_package/analytics/static_site/README.md create mode 100644 analytics/analytics_package/analytics/static_site/__init__.py create mode 100644 analytics/analytics_package/analytics/static_site/export.py create mode 100644 analytics/analytics_package/analytics/static_site/fetch.py create mode 100644 analytics/analytics_package/analytics/static_site/generator.py create mode 100644 analytics/analytics_package/analytics/static_site/resolve.py create mode 100644 analytics/analytics_package/analytics/static_site/template/index.html create mode 100644 analytics/anvil-catalog-sheets/generate_static_site.py create mode 100644 analytics/anvil-explorer-sheets/generate_static_site.py create mode 100644 analytics/hca-explorer-sheets/generate_static_site.py create mode 100644 analytics/lungmap-analytics/sheets/generate_static_site.py diff --git a/.gitignore b/.gitignore index c186b12cb..330de29b5 100644 --- a/.gitignore +++ b/.gitignore @@ -62,5 +62,10 @@ _templates #Python __pycache__/ +*.egg-info/ /analytics/**/_build +/analytics/**/site/ /analytics/venv + +# Credentials +.credentials/ diff --git a/analytics/analytics_package/analytics/static_site/README.md b/analytics/analytics_package/analytics/static_site/README.md new file mode 100644 index 000000000..989413baa --- /dev/null +++ b/analytics/analytics_package/analytics/static_site/README.md @@ -0,0 +1,97 @@ +# Static Analytics Site Generator + +Generates static HTML dashboards from GA4 data for data-browser apps. Each app (AnVIL Explorer, AnVIL Catalog, HCA Data Explorer, LungMAP) has its own `generate_static_site.py` script that calls the shared `generate_site()` function with app-specific configuration. + +## Prerequisites + +1. **Python virtual environment**: + ``` + cd analytics + source ./venv/bin/activate + pip install -e ./analytics_package/ + ``` + +2. **OAuth credentials**: Place the GA4 OAuth client secret JSON file in `.credentials/` at the repo root: + - `.credentials/anvil_ga4_credentials.json` — AnVIL Explorer and AnVIL Catalog + - `.credentials/hca_ga4_credentials.json` — HCA Data Explorer and LungMAP + +## Generating a site + +From the app's analytics directory, run: + +``` +cd analytics +source ./venv/bin/activate +cd anvil-explorer-sheets # or hca-explorer-sheets, lungmap-analytics/sheets +python generate_static_site.py +``` + +A browser window will open for Google OAuth. After authenticating, the script fetches data from GA4 and writes the site to `./site/`. + +To view locally: + +``` +cd site && python -m http.server 8080 +``` + +Then open http://localhost:8080. + +## Updating the report month + +Each app has a `constants.py` file with `CURRENT_MONTH` (e.g., `"2026-03"`). Update this value before generating a new report. + +## Architecture + +### Shared package (`analytics/analytics_package/analytics/static_site/`) + +| File | Purpose | +|------|---------| +| `generator.py` | Orchestrates fetch, title resolution, template copy, and data export | +| `fetch.py` | Fetches GA4 data: traffic, pageviews, outbound links, filter selections, sessions, engagement rate, custom events, file downloads, and access requests | +| `export.py` | Exports DataFrames and dicts to JSON files in `site/data/` | +| `resolve.py` | Resolves entity UUIDs to titles via catalog APIs (AnVIL, HCA/LungMAP Azul) | +| `template/index.html` | Config-driven HTML template with Chart.js charts and data tables | + +### Per-app scripts + +| App | Script | Credentials | Catalog API | +|-----|--------|-------------|-------------| +| AnVIL Explorer | `anvil-explorer-sheets/generate_static_site.py` | `anvil_ga4_credentials.json` | `service.explore.anvilproject.org/index/datasets` | +| AnVIL Catalog | `anvil-catalog-sheets/generate_static_site.py` | `anvil_ga4_credentials.json` | — | +| HCA Data Explorer | `hca-explorer-sheets/generate_static_site.py` | `hca_ga4_credentials.json` | `service.azul.data.humancellatlas.org/index/projects` | +| LungMAP | `lungmap-analytics/sheets/generate_static_site.py` | `hca_ga4_credentials.json` | `service.azul.data.humancellatlas.org/index/projects` (catalog=lm10) | + +### Configuration + +Each script passes a `config` dict that controls branding and dashboard features: + +- `site_title` — page heading and browser title +- `logo_url`, `logo_link`, `favicon_url` — header branding +- `primary_color`, `primary_color_dark` — theme colors +- `summary_stats` — top-level stat cards aggregating multiple events +- `event_counts` — key metric count cards with labels (supports `\n` for line breaks) +- `file_downloads_position` — position of the file downloads card within detail tables +- `custom_events` — list of GA4 events to track, with optional `detail_table`, `page_path_regex`, and `key` for disambiguation +- `access_request_urls` — URL patterns for tracking outbound access requests (AnVIL only) + +### Title resolution + +For apps with dataset/project detail tables, a `title_resolver` callback enriches records with human-readable names by querying the app's catalog API. This happens in-memory before data is written to disk. + +### Output structure + +``` +site/ +├── index.html # Dashboard (copied from template) +└── data/ + ├── config.json + ├── meta.json + ├── monthly_traffic.json + ├── pageviews.json + ├── outbound_links.json + ├── filter_selected.json + ├── file_downloads.json + ├── custom_events.json + ├── access_requests.json # AnVIL only + └── event_*_detail.json # Per-event detail tables +``` diff --git a/analytics/analytics_package/analytics/static_site/__init__.py b/analytics/analytics_package/analytics/static_site/__init__.py new file mode 100644 index 000000000..c252d37f7 --- /dev/null +++ b/analytics/analytics_package/analytics/static_site/__init__.py @@ -0,0 +1,4 @@ +from .generator import generate_site +from .resolve import fetch_entity_title_map, enrich_detail_records + +__all__ = ["generate_site", "fetch_entity_title_map", "enrich_detail_records"] diff --git a/analytics/analytics_package/analytics/static_site/export.py b/analytics/analytics_package/analytics/static_site/export.py new file mode 100644 index 000000000..7052f282a --- /dev/null +++ b/analytics/analytics_package/analytics/static_site/export.py @@ -0,0 +1,180 @@ +"""Export analytics DataFrames to JSON files for the static site.""" + +import glob +import json +import os +from datetime import datetime + +import pandas as pd + +from ..entities import ( + DIMENSION_PAGE_PATH, + DIMENSION_FILTER_NAME, + DIMENSION_FILTER_VALUE, + METRIC_EVENT_COUNT, + METRIC_PAGE_VIEWS, + SYNTHETIC_DIMENSION_CLICKED_LINK, + SYNTHETIC_METRIC_CLICKS, +) +from .fetch import event_key + + +def export_df_as_json(df, col_map, change_col, filename, output_dir): + """Export a DataFrame to JSON with column renaming and NaN handling. + + Args: + df: Source DataFrame. + col_map: Dict mapping source column names to output names. + change_col: Source column name for the change metric (may be absent). + filename: Output JSON filename. + output_dir: Output directory. + """ + if df is None or len(df) == 0: + records = [] + else: + export_cols = list(col_map.keys()) + output_names = list(col_map.values()) + if change_col is not None and change_col in df.columns: + export_cols.append(change_col) + output_names.append("change") + + export = df[export_cols].copy() + export.columns = output_names + + for col in output_names: + if col != "change" and export[col].dtype != object: + export[col] = export[col].fillna(0).astype(int) + + records = export.to_dict(orient="records") + for record in records: + if pd.isna(record.get("change")): + record["change"] = None + + with open(os.path.join(output_dir, filename), "w") as f: + json.dump(records, f, indent=2) + print(f" Wrote {filename} ({len(records)} records)") + + +def export_data(data, config, current_month, analytics_start, custom_events, output_dir): + """Export all analytics data to JSON files. + + Args: + data: Dict containing DataFrames and stats from fetch_data. + config: Site config dict (title, logo, colors). + current_month: Current month string (YYYY-MM). + analytics_start: Analytics start date string. + custom_events: List of custom event dicts with results. + output_dir: Output directory for JSON files. + """ + os.makedirs(output_dir, exist_ok=True) + + for old_file in glob.glob(os.path.join(output_dir, "event_*_detail.json")): + os.remove(old_file) + + df_monthly_traffic = data["monthly_traffic"] + dates = data.get("dates", {}) + + # Monthly traffic + print("Exporting monthly traffic data...") + traffic_data = df_monthly_traffic[["Month", "Users", "Total Pageviews"]].copy() + traffic_data.columns = ["month", "users", "pageviews"] + traffic_data["month"] = traffic_data["month"].astype(str) + traffic_data["users"] = traffic_data["users"].fillna(0).astype(int) + traffic_data["pageviews"] = traffic_data["pageviews"].fillna(0).astype(int) + + with open(os.path.join(output_dir, "monthly_traffic.json"), "w") as f: + json.dump(traffic_data.to_dict(orient="records"), f, indent=2) + print(f" Wrote monthly_traffic.json ({len(traffic_data)} records)") + + # Pageviews + print("Exporting pageviews data...") + export_df_as_json( + data["pageviews"], + {DIMENSION_PAGE_PATH["alias"]: "page", METRIC_PAGE_VIEWS["alias"]: "views"}, + METRIC_PAGE_VIEWS["change_alias"], + "pageviews.json", + output_dir, + ) + + print("Exporting outbound links data...") + export_df_as_json( + data["outbound"], + {SYNTHETIC_DIMENSION_CLICKED_LINK["alias"]: "link", SYNTHETIC_METRIC_CLICKS["alias"]: "clicks"}, + SYNTHETIC_METRIC_CLICKS["change_alias"], + "outbound_links.json", + output_dir, + ) + + print("Exporting filter selections data...") + export_df_as_json( + data.get("filter_selected"), + {DIMENSION_FILTER_NAME["alias"]: "filterName", DIMENSION_FILTER_VALUE["alias"]: "filterValue", METRIC_EVENT_COUNT["alias"]: "count"}, + METRIC_EVENT_COUNT["change_alias"], + "filter_selected.json", + output_dir, + ) + + # File downloads + print("Exporting file downloads data...") + file_downloads = data.get("file_downloads", []) + with open(os.path.join(output_dir, "file_downloads.json"), "w") as f: + json.dump(file_downloads, f, indent=2) + print(f" Wrote file_downloads.json ({len(file_downloads)} records)") + + # Access requests + access_requests = data.get("access_requests", []) + if access_requests: + print("Exporting access requests data...") + with open(os.path.join(output_dir, "access_requests.json"), "w") as f: + json.dump(access_requests, f, indent=2) + print(f" Wrote access_requests.json ({len(access_requests)} records)") + + # Custom events + print("Exporting custom events data...") + events_output = [] + for event in custom_events: + key = event_key(event) + stats = data.get(f"event_{key}", {"current": 0, "prior": 0, "change": None}) + events_output.append({ + "event_name": key, + "label": event["label"], + **stats, + }) + + with open(os.path.join(output_dir, "custom_events.json"), "w") as f: + json.dump(events_output, f, indent=2) + print(f" Wrote custom_events.json ({len(events_output)} events)") + + # Export detail tables for events that have them + for event in custom_events: + key = event_key(event) + detail = data.get(f"event_{key}_detail") + if detail is not None: + filename = f"event_{key}_detail.json" + with open(os.path.join(output_dir, filename), "w") as f: + json.dump(detail, f, indent=2) + print(f" Wrote {filename} ({len(detail)} records)") + + # Config (for the HTML template) + print("Exporting site config...") + with open(os.path.join(output_dir, "config.json"), "w") as f: + json.dump(config, f, indent=2) + print(" Wrote config.json") + + # Metadata + print("Exporting metadata...") + meta = { + "generated_at": datetime.now().strftime("%Y-%m-%d %H:%M:%S"), + "current_month": current_month, + "current_month_start": dates.get("start_current", ""), + "current_month_end": dates.get("end_current", ""), + "prior_month_start": dates.get("start_prior", ""), + "prior_month_end": dates.get("end_prior", ""), + "analytics_start": analytics_start, + "sessions": data.get("sessions", {}), + "engagement_rate": data.get("engagement_rate", {}), + } + + with open(os.path.join(output_dir, "meta.json"), "w") as f: + json.dump(meta, f, indent=2) + print(" Wrote meta.json") diff --git a/analytics/analytics_package/analytics/static_site/fetch.py b/analytics/analytics_package/analytics/static_site/fetch.py new file mode 100644 index 000000000..d41a61407 --- /dev/null +++ b/analytics/analytics_package/analytics/static_site/fetch.py @@ -0,0 +1,284 @@ +"""Fetch analytics data from GA4 for the static site.""" + +import re + +from .. import sheets_elements as elements +from .._sheets_utils import get_data_df_from_fields +from ..entities import ( + METRIC_EVENT_COUNT, + METRIC_SESSIONS, + DIMENSION_EVENT_NAME, + DIMENSION_PAGE_PATH, + DIMENSION_CUSTOM_URL, + DIMENSION_ENTITY_NAME, + DIMENSION_RELATED_ENTITY_ID, + DIMENSION_RELATED_ENTITY_NAME, +) + +METRIC_ENGAGEMENT_RATE = { + "id": "engagementRate", + "alias": "Engagement Rate", +} + + +def event_key(event): + """Return the unique key for a custom event config dict.""" + return event.get("key", event["event_name"]) + + +def _count_events(event_name, params, page_path_regex=None): + """Fetch event count, optionally filtered by page path regex.""" + dimensions = [DIMENSION_EVENT_NAME] + if page_path_regex: + dimensions.append(DIMENSION_PAGE_PATH) + + df = get_data_df_from_fields( + [METRIC_EVENT_COUNT], + dimensions, + dimension_filter=f"eventName=={event_name}", + **params, + ) + + if len(df) == 0: + return 0 + + if page_path_regex: + pattern = re.compile(page_path_regex) + mask = df[DIMENSION_PAGE_PATH["alias"]].str.match(pattern) + return int(df.loc[mask, METRIC_EVENT_COUNT["alias"]].sum()) + + return int(df[METRIC_EVENT_COUNT["alias"]].sum()) + + +def get_custom_event_change(event_name, params_current, params_prior, page_path_regex=None): + """Fetch a custom event count with month-over-month change. + + Args: + event_name: GA4 event name (e.g., "chat_submitted"). + params_current: Analytics params for the current period. + params_prior: Analytics params for the prior period. + page_path_regex: Optional regex to filter by page path. + + Returns: + Dict with "current", "prior", and "change" keys. + """ + current_count = _count_events(event_name, params_current, page_path_regex) + prior_count = _count_events(event_name, params_prior, page_path_regex) + + change = None + if prior_count > 0: + change = (current_count - prior_count) / prior_count + + return {"current": current_count, "prior": prior_count, "change": change} + + +def get_event_detail_table(event_name, params, page_path_regex=None): + """Fetch event details broken down by page path and entity name. + + Args: + event_name: GA4 event name. + params: Analytics params for the period. + page_path_regex: Optional regex to filter by page path. + + Returns: + List of dicts with "page_path", "entity_name", and "count" keys, + sorted by count descending. + """ + df = get_data_df_from_fields( + [METRIC_EVENT_COUNT], + [DIMENSION_EVENT_NAME, DIMENSION_PAGE_PATH, DIMENSION_ENTITY_NAME], + dimension_filter=f"eventName=={event_name}", + **params, + ) + + if len(df) == 0: + return [] + + if page_path_regex: + pattern = re.compile(page_path_regex) + df = df[df[DIMENSION_PAGE_PATH["alias"]].str.match(pattern)] + + if len(df) == 0: + return [] + + result = df[[DIMENSION_PAGE_PATH["alias"], DIMENSION_ENTITY_NAME["alias"], METRIC_EVENT_COUNT["alias"]]].copy() + result.columns = ["page_path", "entity_name", "count"] + result = result.sort_values("count", ascending=False) + return result.to_dict(orient="records") + + +def get_file_downloads(params): + """Fetch file_downloaded events with entity name and related entity name. + + Returns: + List of dicts with "entity_name", "dataset_id", "related_entity_name", + and "count" keys. + """ + df = elements.get_index_table_download_df(params) + + if len(df) == 0: + return [] + + result = df[[DIMENSION_ENTITY_NAME["alias"], DIMENSION_RELATED_ENTITY_ID["alias"], DIMENSION_RELATED_ENTITY_NAME["alias"], METRIC_EVENT_COUNT["alias"]]].copy() + result.columns = ["entity_name", "dataset_id", "related_entity_name", "count"] + result = result.sort_values("count", ascending=False) + return result.to_dict(orient="records") + + +def get_access_requests(params, url_patterns): + """Fetch outbound_link_clicked events filtered by URL patterns. + + Args: + params: Analytics params for the period. + url_patterns: List of URL substrings to match (e.g., ["duos.org", "dbgap.ncbi.nlm.nih.gov"]). + + Returns: + List of dicts with "page_path", "click_url", and "count" keys, + sorted by count descending. + """ + df = get_data_df_from_fields( + [METRIC_EVENT_COUNT], + [DIMENSION_EVENT_NAME, DIMENSION_PAGE_PATH, DIMENSION_CUSTOM_URL], + dimension_filter="eventName==outbound_link_clicked", + **params, + ) + + if len(df) == 0: + return [] + + url_col = DIMENSION_CUSTOM_URL["alias"] + mask = df[url_col].str.contains("|".join(re.escape(p) for p in url_patterns), case=False, na=False) + df = df[mask] + + if len(df) == 0: + return [] + + result = df[[DIMENSION_PAGE_PATH["alias"], url_col, METRIC_EVENT_COUNT["alias"]]].copy() + result.columns = ["page_path", "click_url", "count"] + result["count"] = result["count"].astype(int) + result = result.groupby(["page_path", "click_url"], as_index=False)["count"].sum() + result = result.sort_values("count", ascending=False) + return result.to_dict(orient="records") + + +def fetch_data( + ga_authentication, + property_id, + current_month, + analytics_start, + custom_events=None, + historic_data_path=None, + access_request_urls=None, +): + """Fetch all analytics data for the static site. + + Args: + ga_authentication: GA4 authentication object from analytics.api.authenticate. + property_id: GA4 property ID. + current_month: Current month string (YYYY-MM). + analytics_start: Start date for all-time data (YYYY-MM-DD). + custom_events: List of dicts with "event_name" and "label" keys. + historic_data_path: Path to historic UA data JSON file (optional). + + Returns: + Dict containing DataFrames and stats for each data type. + """ + if custom_events is None: + custom_events = [] + + report_dates = elements.get_bounds_for_month_and_prev(current_month) + start_date_current = report_dates["start_current"] + end_date_current = report_dates["end_current"] + start_date_prior = report_dates["start_previous"] + end_date_prior = report_dates["end_previous"] + + print(f"Current month: {start_date_current} to {end_date_current}") + print(f"Prior month: {start_date_prior} to {end_date_prior}") + + params = { + "service_system": ga_authentication, + "start_date": start_date_current, + "end_date": end_date_current, + "property": property_id, + } + params_all_time = {**params, "start_date": analytics_start, "end_date": end_date_current} + params_prior = {**params, "start_date": start_date_prior, "end_date": end_date_prior} + + print("Fetching monthly traffic data...") + historic_kwargs = {"additional_data_path": historic_data_path, "additional_data_behavior": elements.ADDITIONAL_DATA_BEHAVIOR.ADD} if historic_data_path else {} + df_monthly_traffic = elements.get_page_views_over_time_df(params_all_time, **historic_kwargs) + + print("Fetching pageviews data...") + df_pageviews = elements.get_page_views_change( + params, start_date_current, end_date_current, start_date_prior, end_date_prior, + ) + + print("Fetching outbound links data...") + df_outbound = elements.get_outbound_links_change( + params, start_date_current, end_date_current, start_date_prior, end_date_prior, + ) + + print("Fetching filter selections data...") + df_filter_selected = elements.get_index_filter_selected_change( + params, start_date_current, end_date_current, start_date_prior, end_date_prior, + ) + + print("Fetching sessions and engagement data...") + df_sessions_current = get_data_df_from_fields( + [METRIC_SESSIONS, METRIC_ENGAGEMENT_RATE], [], **params, + ) + df_sessions_prior = get_data_df_from_fields( + [METRIC_SESSIONS, METRIC_ENGAGEMENT_RATE], [], **params_prior, + ) + sessions_current = int(df_sessions_current[METRIC_SESSIONS["alias"]].sum()) if len(df_sessions_current) > 0 else 0 + sessions_prior = int(df_sessions_prior[METRIC_SESSIONS["alias"]].sum()) if len(df_sessions_prior) > 0 else 0 + engagement_current = float(df_sessions_current[METRIC_ENGAGEMENT_RATE["alias"]].mean()) if len(df_sessions_current) > 0 else 0 + engagement_prior = float(df_sessions_prior[METRIC_ENGAGEMENT_RATE["alias"]].mean()) if len(df_sessions_prior) > 0 else 0 + + print("Fetching file downloads data...") + file_downloads = get_file_downloads(params) + + access_requests = [] + if access_request_urls: + print("Fetching access requests data...") + access_requests = get_access_requests(params, access_request_urls) + + data = { + "sessions": { + "current": sessions_current, + "prior": sessions_prior, + }, + "engagement_rate": { + "current": engagement_current, + "prior": engagement_prior, + }, + "monthly_traffic": df_monthly_traffic, + "pageviews": df_pageviews, + "outbound": df_outbound, + "filter_selected": df_filter_selected, + "file_downloads": file_downloads, + "access_requests": access_requests, + "dates": { + "start_current": start_date_current, + "end_current": end_date_current, + "start_prior": start_date_prior, + "end_prior": end_date_prior, + }, + } + + for event in custom_events: + key = event_key(event) + print(f"Fetching {event['label']} data...") + data[f"event_{key}"] = get_custom_event_change( + event["event_name"], params, params_prior, + page_path_regex=event.get("page_path_regex"), + ) + if event.get("detail_table"): + print(f"Fetching {event['label']} detail table...") + data[f"event_{key}_detail"] = get_event_detail_table( + event["event_name"], params, + page_path_regex=event.get("page_path_regex"), + ) + + print("Data fetching complete!") + return data diff --git a/analytics/analytics_package/analytics/static_site/generator.py b/analytics/analytics_package/analytics/static_site/generator.py new file mode 100644 index 000000000..63c0dd478 --- /dev/null +++ b/analytics/analytics_package/analytics/static_site/generator.py @@ -0,0 +1,87 @@ +"""Generate a static analytics site from GA4 data.""" + +import os +import shutil + +from .fetch import fetch_data +from .export import export_data + +TEMPLATE_DIR = os.path.join(os.path.dirname(__file__), "template") + + +def generate_site( + ga_authentication, + config, + property_id, + current_month, + analytics_start, + output_dir="site", + custom_events=None, + historic_data_path=None, + title_resolver=None, + access_request_urls=None, +): + """Generate a static analytics site. + + Args: + ga_authentication: GA4 authentication object from analytics.api.authenticate. + config: Site config dict with keys: + - site_title: Display title (e.g., "AnVIL Catalog"). + - logo_url: URL to the logo image. + - logo_link: URL the logo links to. + - primary_color: Primary color hex (e.g., "#035C94"). + - primary_color_dark: Darker primary color hex. + property_id: GA4 property ID. + current_month: Current month string (YYYY-MM). + analytics_start: Start date for all-time data (YYYY-MM-DD). + output_dir: Output directory for the generated site. + custom_events: List of dicts with "event_name" and "label" keys. + Example: [{"event_name": "chat_submitted", "label": "Chat Submissions"}] + historic_data_path: Path to historic UA data JSON file (optional). + title_resolver: Optional callable that accepts the data dict and enriches + detail records with resolved entity titles (e.g., dataset/project names). + """ + if custom_events is None: + custom_events = [] + + print("=" * 50) + print(f"Generating analytics site: {config['site_title']}") + print("=" * 50) + print() + + data = fetch_data( + ga_authentication=ga_authentication, + property_id=property_id, + current_month=current_month, + analytics_start=analytics_start, + custom_events=custom_events, + historic_data_path=historic_data_path, + access_request_urls=access_request_urls, + ) + + if title_resolver: + print("Resolving entity titles...") + title_resolver(data) + + os.makedirs(output_dir, exist_ok=True) + template_html = os.path.join(TEMPLATE_DIR, "index.html") + output_html = os.path.join(output_dir, "index.html") + shutil.copy2(template_html, output_html) + print(f"Copied template to {output_html}") + + data_dir = os.path.join(output_dir, "data") + export_data( + data=data, + config=config, + current_month=current_month, + analytics_start=analytics_start, + custom_events=custom_events, + output_dir=data_dir, + ) + + print("\n" + "=" * 50) + print("Static site generation complete!") + print(f"Files written to: {os.path.abspath(output_dir)}") + print("\nTo view the site locally, run:") + print(f" cd {output_dir} && python -m http.server 8080") + print("Then open http://localhost:8080 in your browser.") diff --git a/analytics/analytics_package/analytics/static_site/resolve.py b/analytics/analytics_package/analytics/static_site/resolve.py new file mode 100644 index 000000000..2b89f844a --- /dev/null +++ b/analytics/analytics_package/analytics/static_site/resolve.py @@ -0,0 +1,76 @@ +"""Resolve entity UUIDs to titles via catalog APIs.""" + +import re + +import requests + + +def fetch_entity_title_map(api_url, entity_key, title_key, page_size=50, catalog=None): + """Fetch all entities from a catalog API and return a mapping of entryId to title. + + Args: + api_url: Full API URL (e.g., "https://service.azul.data.humancellatlas.org/index/projects"). + entity_key: Key in each hit containing entity list (e.g., "projects", "datasets"). + title_key: Key within each entity for the title (e.g., "projectTitle", "title"). + page_size: Number of results per page. + + Returns: + Dict mapping entryId to title string. + """ + title_map: dict[str, str] = {} + url: str | None = api_url + params: dict | None = {"size": page_size} + if catalog: + params["catalog"] = catalog + while url is not None: + response = requests.get(url, params=params) + response.raise_for_status() + data = response.json() + for hit in data["hits"]: + entry_id = hit.get("entryId") + entities = hit.get(entity_key, []) + if entry_id and entities: + title = entities[0].get(title_key, "") + if title: + title_map[entry_id] = title + url = data.get("pagination", {}).get("next") + params = None + return title_map + + +def enrich_detail_records(data, title_map, path_pattern): + """Enrich in-memory detail records with resolved titles. + + Args: + data: The data dict from fetch_data, containing event detail lists. + title_map: Dict mapping entity UUIDs to titles. + path_pattern: Regex pattern with one capture group for the UUID + (e.g., r"/projects/([0-9a-f-]+)"). + + Returns: + Number of records enriched. + """ + pattern = re.compile(path_pattern) + enriched = 0 + + # Enrich dataset-level detail tables + for key, records in data.items(): + if not key.endswith("_detail") or not isinstance(records, list): + continue + if not key.startswith("event_dataset_"): + continue + for record in records: + match = pattern.search(record.get("page_path", "")) + if match: + uuid = match.group(1) + record["dataset_title"] = title_map.get(uuid, uuid) + enriched += 1 + + # Enrich access request records + for record in data.get("access_requests", []): + match = pattern.search(record.get("page_path", "")) + if match: + uuid = match.group(1) + record["dataset_title"] = title_map.get(uuid, uuid) + enriched += 1 + return enriched diff --git a/analytics/analytics_package/analytics/static_site/template/index.html b/analytics/analytics_package/analytics/static_site/template/index.html new file mode 100644 index 000000000..9d9ede90d --- /dev/null +++ b/analytics/analytics_package/analytics/static_site/template/index.html @@ -0,0 +1,857 @@ + + + + + + Analytics + + + + + + + +
+ +
+
+
+ +
+
+

Analytics

+

Loading...

+
+ +
+
+
+

Loading statistics...

+
+
+
+ +
+
+
+

Monthly Traffic Over Time

+
+
+
+
+ +
+
+
+ +
+
+

Monthly Pageviews

+
+
+
+
+ +
+
+
+
+ + + + + +
+
+ + + + + + + + +

General Usage

+ +
+
+

Top Pages

+
+
+
+ + + + + + + + + + + +
PageViewsChange
Loading...
+
+
+ +
+
+

Top Outbound Links

+
+
+
+ + + + + + + + + + + +
LinkClicksChange
Loading...
+
+
+ +
+
+

Filter Selections

+
+
+
+ + + + + + + + + + + + +
Filter NameFilter ValueCountChange
Loading...
+
+
+ +

+ Data sourced from Google Analytics | Generated - +

+
+ + + + diff --git a/analytics/analytics_package/setup.py b/analytics/analytics_package/setup.py index a5fcf498a..bc3d73b7f 100644 --- a/analytics/analytics_package/setup.py +++ b/analytics/analytics_package/setup.py @@ -3,6 +3,7 @@ setup( name="analytics", version="4.3.0", - packages=["analytics"], + packages=["analytics", "analytics.static_site"], + package_data={"analytics.static_site": ["template/*.html"]}, install_requires=["matplotlib", "pandas", "numpy", "google-auth-oauthlib", "google-api-python-client", "gspread", "gspread-formatting"], ) \ No newline at end of file diff --git a/analytics/anvil-catalog-sheets/constants.py b/analytics/anvil-catalog-sheets/constants.py index cd4a5bb6c..94d30d650 100644 --- a/analytics/anvil-catalog-sheets/constants.py +++ b/analytics/anvil-catalog-sheets/constants.py @@ -1,8 +1,8 @@ # CHANGE THESE VALUES TO GENERATE NEW REPORTS # The date of the current month to report on (yyyy-mm) -CURRENT_MONTH = "2025-01" +CURRENT_MONTH = "2026-03" # The name of the folder in which to save the report -PARENT_FOLDER_NAME = "January 2025" +PARENT_FOLDER_NAME = "March 2026" # The name of the spreadsheet with the report SHEET_NAME = "AnVIL Catalog" diff --git a/analytics/anvil-catalog-sheets/generate_static_site.py b/analytics/anvil-catalog-sheets/generate_static_site.py new file mode 100644 index 000000000..3a055fa5c --- /dev/null +++ b/analytics/anvil-catalog-sheets/generate_static_site.py @@ -0,0 +1,36 @@ +#!/usr/bin/env python3 +"""Generate static analytics site for AnVIL Catalog.""" + +import os + +import analytics.api as ga +from analytics.static_site import generate_site +from constants import CURRENT_MONTH, ANVIL_CATALOG_ID, SECRET_NAME, ANALYTICS_START, OAUTH_PORT, HISTORIC_UA_DATA_PATH + +os.environ.setdefault(SECRET_NAME, "../../.credentials/anvil_ga4_credentials.json") + +ga_authentication = ga.authenticate( + SECRET_NAME, + ga.ga4_service_params, + port=OAUTH_PORT, +) + +generate_site( + ga_authentication=ga_authentication, + config={ + "site_title": "AnVIL Catalog", + "logo_url": "https://explore.anvilproject.org/images/logoAnvil.png", + "favicon_url": "https://explore.anvilproject.org/favicons/favicon.ico", + "logo_link": "https://explore.anvilproject.org", + "primary_color": "#035C94", + "primary_color_dark": "#003E76", + }, + property_id=ANVIL_CATALOG_ID, + current_month=CURRENT_MONTH, + analytics_start=ANALYTICS_START, + output_dir="./site", + custom_events=[ + {"event_name": "filter_selected", "label": "Filter Selections"}, + ], + historic_data_path=HISTORIC_UA_DATA_PATH, +) diff --git a/analytics/anvil-explorer-sheets/constants.py b/analytics/anvil-explorer-sheets/constants.py index 86a7eef71..13d2ab5a8 100644 --- a/analytics/anvil-explorer-sheets/constants.py +++ b/analytics/anvil-explorer-sheets/constants.py @@ -1,8 +1,8 @@ # CHANGE THESE VALUES TO GENERATE NEW REPORTS # The date of the current month to report on (yyyy-mm) -CURRENT_MONTH = "2025-01" +CURRENT_MONTH = "2026-03" # The name of the folder in which to save the report -PARENT_FOLDER_NAME = "January 2025" +PARENT_FOLDER_NAME = "March 2026" # The name of the spreadsheet with the report SHEET_NAME = "AnVIL Explorer" diff --git a/analytics/anvil-explorer-sheets/generate_static_site.py b/analytics/anvil-explorer-sheets/generate_static_site.py new file mode 100644 index 000000000..2461e6b39 --- /dev/null +++ b/analytics/anvil-explorer-sheets/generate_static_site.py @@ -0,0 +1,95 @@ +#!/usr/bin/env python3 +"""Generate static analytics site for AnVIL Explorer.""" + +import os + +import analytics.api as ga +from analytics.static_site import generate_site, enrich_detail_records +from constants import CURRENT_MONTH, ANVIL_EXPLORER_ID, SECRET_NAME, ANALYTICS_START, OAUTH_PORT +from utils import fetch_dataset_title_map + +os.environ.setdefault(SECRET_NAME, "../../.credentials/anvil_ga4_credentials.json") + +ga_authentication = ga.authenticate( + SECRET_NAME, + ga.ga4_service_params, + port=OAUTH_PORT, +) + + +def resolve_dataset_titles(data): + title_map = fetch_dataset_title_map() + count = enrich_detail_records(data, title_map, r"/datasets/([0-9a-f-]+)") + print(f" Enriched {count} records with dataset titles") + + +generate_site( + ga_authentication=ga_authentication, + config={ + "site_title": "AnVIL Explorer User Analytics", + "logo_url": "https://explore.anvilproject.org/images/logoAnvil.png", + "favicon_url": "https://explore.anvilproject.org/favicons/favicon.ico", + "logo_link": "https://explore.anvilproject.org", + "primary_color": "#035C94", + "primary_color_dark": "#003E76", + "summary_stats": [ + { + "label": "Cohort Export Requests", + "event_keys": ["index_bulk_download_requested", "index_file_manifest_requested", "index_analyze_in_terra_requested"], + }, + { + "label": "Dataset Export Requests", + "event_keys": ["dataset_bulk_download_requested", "dataset_file_manifest_requested", "dataset_analyze_in_terra_requested"], + }, + ], + "file_downloads_position": 3, + "event_counts": [ + {"label": "Export to Terra\n(Single Dataset)", "event_key": "dataset_analyze_in_terra_requested"}, + {"label": "Export to Terra\n(Cross-Dataset)", "event_key": "index_analyze_in_terra_requested"}, + {"label": "curl Command\n(Single Dataset)", "event_key": "dataset_bulk_download_requested"}, + {"label": "curl Command\n(Cross-Dataset)", "event_key": "index_bulk_download_requested"}, + {"label": "File Manifest\n(Single Dataset)", "event_key": "dataset_file_manifest_requested"}, + {"label": "File Manifest\n(Cross-Dataset)", "event_key": "index_file_manifest_requested"}, + ], + }, + property_id=ANVIL_EXPLORER_ID, + current_month=CURRENT_MONTH, + analytics_start=ANALYTICS_START, + output_dir="./site", + custom_events=[ + {"event_name": "filter_selected", "label": "Filter Selections"}, + { + "event_name": "bulk_download_requested", + "key": "index_bulk_download_requested", + "label": "Cohort curl Download Requests", + "page_path_regex": r"^(?!/datasets/[0-9a-f-]+)", + }, + { + "event_name": "index_file_manifest_requested", + "label": "Cohort File Manifest Requests", + }, + { + "event_name": "index_analyze_in_terra_requested", + "label": "Cohort Analyze in Terra Requests", + }, + { + "event_name": "dataset_analyze_in_terra_requested", + "label": "Dataset Analyze in Terra Requests", + "detail_table": True, + }, + { + "event_name": "bulk_download_requested", + "key": "dataset_bulk_download_requested", + "label": "Dataset curl Download Requests", + "page_path_regex": r"^/datasets/[0-9a-f-]+", + "detail_table": True, + }, + { + "event_name": "dataset_file_manifest_requested", + "label": "Dataset File Manifest Requests", + "detail_table": True, + }, + ], + title_resolver=resolve_dataset_titles, + access_request_urls=["duos.org", "dbgap.ncbi.nlm.nih.gov"], +) diff --git a/analytics/anvil-explorer-sheets/utils.py b/analytics/anvil-explorer-sheets/utils.py index 8e63ae91f..ba777b4c4 100644 --- a/analytics/anvil-explorer-sheets/utils.py +++ b/analytics/anvil-explorer-sheets/utils.py @@ -32,7 +32,7 @@ def fetch_dataset_title_map() -> dict[str, str]: if title: title_map[entry_id] = title url = data.get("pagination", {}).get("next") - params = None # subsequent URLs already include query params + params = None return title_map diff --git a/analytics/hca-explorer-sheets/constants.py b/analytics/hca-explorer-sheets/constants.py index 11a3bdb14..7962119af 100644 --- a/analytics/hca-explorer-sheets/constants.py +++ b/analytics/hca-explorer-sheets/constants.py @@ -1,8 +1,8 @@ # CHANGE THESE VALUES TO GENERATE NEW REPORTS # The date of the current month to report on (yyyy-mm) -CURRENT_MONTH = "2025-01" +CURRENT_MONTH = "2026-03" # The name of the folder in which to save the report -PARENT_FOLDER_NAME = "January 2025" +PARENT_FOLDER_NAME = "March 2026" # The name of the spreadsheet with the report SHEET_NAME = "HCA Explorer" diff --git a/analytics/hca-explorer-sheets/generate_static_site.py b/analytics/hca-explorer-sheets/generate_static_site.py new file mode 100644 index 000000000..8accd2e4c --- /dev/null +++ b/analytics/hca-explorer-sheets/generate_static_site.py @@ -0,0 +1,95 @@ +#!/usr/bin/env python3 +"""Generate static analytics site for HCA Data Explorer.""" + +import os + +import analytics.api as ga +from analytics.static_site import generate_site, fetch_entity_title_map, enrich_detail_records +from constants import CURRENT_MONTH, HCA_ID, SECRET_NAME, ANALYTICS_START, OAUTH_PORT + +AZUL_PROJECTS_URL = "https://service.azul.data.humancellatlas.org/index/projects" + +os.environ.setdefault(SECRET_NAME, "../../.credentials/hca_ga4_credentials.json") + +ga_authentication = ga.authenticate( + SECRET_NAME, + ga.ga4_service_params, + port=OAUTH_PORT, +) + + +def resolve_project_titles(data): + title_map = fetch_entity_title_map(AZUL_PROJECTS_URL, "projects", "projectTitle") + count = enrich_detail_records(data, title_map, r"/projects/([0-9a-f-]+)") + print(f" Enriched {count} records with project titles") + + +generate_site( + ga_authentication=ga_authentication, + config={ + "site_title": "HCA Data Explorer User Analytics", + "logo_url": "https://explore.data.humancellatlas.org/images/hcaExplorer.png", + "favicon_url": "https://explore.data.humancellatlas.org/favicons/favicon.ico", + "logo_link": "https://explore.data.humancellatlas.org", + "primary_color": "#1C7CC7", + "primary_color_dark": "#005EA9", + "summary_stats": [ + { + "label": "Cohort Export Requests", + "event_keys": ["index_bulk_download_requested", "index_file_manifest_requested", "index_analyze_in_terra_requested"], + }, + { + "label": "Project Export Requests", + "event_keys": ["dataset_bulk_download_requested", "dataset_file_manifest_requested", "dataset_analyze_in_terra_requested"], + }, + ], + "file_downloads_position": 3, + "event_counts": [ + {"label": "Export to Terra\n(Single Project)", "event_key": "dataset_analyze_in_terra_requested"}, + {"label": "Export to Terra\n(Cross-Dataset)", "event_key": "index_analyze_in_terra_requested"}, + {"label": "curl Command\n(Single Project)", "event_key": "dataset_bulk_download_requested"}, + {"label": "curl Command\n(Cross-Dataset)", "event_key": "index_bulk_download_requested"}, + {"label": "File Manifest\n(Single Project)", "event_key": "dataset_file_manifest_requested"}, + {"label": "File Manifest\n(Cross-Dataset)", "event_key": "index_file_manifest_requested"}, + ], + }, + property_id=HCA_ID, + current_month=CURRENT_MONTH, + analytics_start=ANALYTICS_START, + output_dir="./site", + custom_events=[ + {"event_name": "filter_selected", "label": "Filter Selections"}, + { + "event_name": "bulk_download_requested", + "key": "index_bulk_download_requested", + "label": "Cohort curl Download Requests", + "page_path_regex": r"^(?!/projects/[0-9a-f-]+)", + }, + { + "event_name": "index_file_manifest_requested", + "label": "Cohort File Manifest Requests", + }, + { + "event_name": "index_analyze_in_terra_requested", + "label": "Cohort Analyze in Terra Requests", + }, + { + "event_name": "dataset_analyze_in_terra_requested", + "label": "Project Analyze in Terra Requests", + "detail_table": True, + }, + { + "event_name": "bulk_download_requested", + "key": "dataset_bulk_download_requested", + "label": "Project curl Download Requests", + "page_path_regex": r"^/projects/[0-9a-f-]+", + "detail_table": True, + }, + { + "event_name": "dataset_file_manifest_requested", + "label": "Project File Manifest Requests", + "detail_table": True, + }, + ], + title_resolver=resolve_project_titles, +) diff --git a/analytics/lungmap-analytics/sheets/constants.py b/analytics/lungmap-analytics/sheets/constants.py index eefa6c239..721b59f22 100644 --- a/analytics/lungmap-analytics/sheets/constants.py +++ b/analytics/lungmap-analytics/sheets/constants.py @@ -1,8 +1,8 @@ # CHANGE THESE VALUES TO GENERATE NEW REPORTS # The date of the current month to report on (yyyy-mm) -CURRENT_MONTH = "2025-01" +CURRENT_MONTH = "2026-03" # The name of the folder in which to save the report -PARENT_FOLDER_NAME = "January 2025" +PARENT_FOLDER_NAME = "March 2026" # The name of the spreadsheet with the report SHEET_NAME = "Lungmap Data Browser" diff --git a/analytics/lungmap-analytics/sheets/generate_static_site.py b/analytics/lungmap-analytics/sheets/generate_static_site.py new file mode 100644 index 000000000..18ee2af0e --- /dev/null +++ b/analytics/lungmap-analytics/sheets/generate_static_site.py @@ -0,0 +1,96 @@ +#!/usr/bin/env python3 +"""Generate static analytics site for LungMAP Data Browser.""" + +import os + +import analytics.api as ga +from analytics.static_site import generate_site, fetch_entity_title_map, enrich_detail_records +from constants import CURRENT_MONTH, LUNGMAP_ID, SECRET_NAME, ANALYTICS_START, OAUTH_PORT, HISTORIC_UA_DATA_PATH + +AZUL_PROJECTS_URL = "https://service.azul.data.humancellatlas.org/index/projects" + +os.environ.setdefault(SECRET_NAME, "../../../.credentials/hca_ga4_credentials.json") + +ga_authentication = ga.authenticate( + SECRET_NAME, + ga.ga4_service_params, + port=OAUTH_PORT, +) + + +def resolve_project_titles(data): + title_map = fetch_entity_title_map(AZUL_PROJECTS_URL, "projects", "projectTitle", catalog="lm10") + count = enrich_detail_records(data, title_map, r"/projects/([0-9a-f-]+)") + print(f" Enriched {count} records with project titles") + + +generate_site( + ga_authentication=ga_authentication, + config={ + "site_title": "LungMAP User Analytics", + "logo_url": "https://data-browser.lungmap.net/images/logoLungmap.png", + "favicon_url": "https://data-browser.lungmap.net/favicons/favicon.ico", + "logo_link": "https://data-browser.lungmap.net", + "primary_color": "#4B7D8E", + "primary_color_dark": "#3A6270", + "summary_stats": [ + { + "label": "Cohort Export Requests", + "event_keys": ["index_bulk_download_requested", "index_file_manifest_requested", "index_analyze_in_terra_requested"], + }, + { + "label": "Project Export Requests", + "event_keys": ["dataset_bulk_download_requested", "dataset_file_manifest_requested", "dataset_analyze_in_terra_requested"], + }, + ], + "file_downloads_position": 3, + "event_counts": [ + {"label": "Export to Terra\n(Single Project)", "event_key": "dataset_analyze_in_terra_requested"}, + {"label": "Export to Terra\n(Cross-Dataset)", "event_key": "index_analyze_in_terra_requested"}, + {"label": "curl Command\n(Single Project)", "event_key": "dataset_bulk_download_requested"}, + {"label": "curl Command\n(Cross-Dataset)", "event_key": "index_bulk_download_requested"}, + {"label": "File Manifest\n(Single Project)", "event_key": "dataset_file_manifest_requested"}, + {"label": "File Manifest\n(Cross-Dataset)", "event_key": "index_file_manifest_requested"}, + ], + }, + property_id=LUNGMAP_ID, + current_month=CURRENT_MONTH, + analytics_start=ANALYTICS_START, + output_dir="./site", + custom_events=[ + {"event_name": "filter_selected", "label": "Filter Selections"}, + { + "event_name": "bulk_download_requested", + "key": "index_bulk_download_requested", + "label": "Cohort curl Download Requests", + "page_path_regex": r"^(?!/projects/[0-9a-f-]+)", + }, + { + "event_name": "index_file_manifest_requested", + "label": "Cohort File Manifest Requests", + }, + { + "event_name": "index_analyze_in_terra_requested", + "label": "Cohort Analyze in Terra Requests", + }, + { + "event_name": "dataset_analyze_in_terra_requested", + "label": "Project Analyze in Terra Requests", + "detail_table": True, + }, + { + "event_name": "bulk_download_requested", + "key": "dataset_bulk_download_requested", + "label": "Project curl Download Requests", + "page_path_regex": r"^/projects/[0-9a-f-]+", + "detail_table": True, + }, + { + "event_name": "dataset_file_manifest_requested", + "label": "Project File Manifest Requests", + "detail_table": True, + }, + ], + historic_data_path=HISTORIC_UA_DATA_PATH, + title_resolver=resolve_project_titles, +) From aba8b5881f6c8004198e8bd4e176b6e4328adf46 Mon Sep 17 00:00:00 2001 From: MillenniumFalconMechanic Date: Wed, 29 Apr 2026 12:05:39 -0700 Subject: [PATCH 2/9] fix: address PR review feedback #4779 Co-Authored-By: Claude Opus 4.6 (1M context) --- .../analytics_package/analytics/static_site/export.py | 9 ++++----- .../analytics_package/analytics/static_site/resolve.py | 2 +- .../analytics/static_site/template/index.html | 2 +- analytics/analytics_package/setup.py | 2 +- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/analytics/analytics_package/analytics/static_site/export.py b/analytics/analytics_package/analytics/static_site/export.py index 7052f282a..ea586a49d 100644 --- a/analytics/analytics_package/analytics/static_site/export.py +++ b/analytics/analytics_package/analytics/static_site/export.py @@ -122,12 +122,11 @@ def export_data(data, config, current_month, analytics_start, custom_events, out print(f" Wrote file_downloads.json ({len(file_downloads)} records)") # Access requests + print("Exporting access requests data...") access_requests = data.get("access_requests", []) - if access_requests: - print("Exporting access requests data...") - with open(os.path.join(output_dir, "access_requests.json"), "w") as f: - json.dump(access_requests, f, indent=2) - print(f" Wrote access_requests.json ({len(access_requests)} records)") + with open(os.path.join(output_dir, "access_requests.json"), "w") as f: + json.dump(access_requests, f, indent=2) + print(f" Wrote access_requests.json ({len(access_requests)} records)") # Custom events print("Exporting custom events data...") diff --git a/analytics/analytics_package/analytics/static_site/resolve.py b/analytics/analytics_package/analytics/static_site/resolve.py index 2b89f844a..7eb5ebcd5 100644 --- a/analytics/analytics_package/analytics/static_site/resolve.py +++ b/analytics/analytics_package/analytics/static_site/resolve.py @@ -23,7 +23,7 @@ def fetch_entity_title_map(api_url, entity_key, title_key, page_size=50, catalog if catalog: params["catalog"] = catalog while url is not None: - response = requests.get(url, params=params) + response = requests.get(url, params=params, timeout=30) response.raise_for_status() data = response.json() for hit in data["hits"]: diff --git a/analytics/analytics_package/analytics/static_site/template/index.html b/analytics/analytics_package/analytics/static_site/template/index.html index 9d9ede90d..60d752984 100644 --- a/analytics/analytics_package/analytics/static_site/template/index.html +++ b/analytics/analytics_package/analytics/static_site/template/index.html @@ -7,7 +7,7 @@ - + + + +
+ +
+
+
+ +
+
+

Analytics

+

Loading...

+
+ +
+
+
+

Loading statistics...

+
+
+
+ +
+
+
+

Monthly Traffic Over Time

+
+
+
+
+ +
+
+
+ +
+
+

Monthly Pageviews

+
+
+
+
+ +
+
+
+
+ + + + + +
+
+ + + + + + + + +

General Usage

+ +
+
+

Top Pages

+
+
+
+ + + + + + + + + + + +
PageViewsChange
Loading...
+
+
+ +
+
+

Top Outbound Links

+
+
+
+ + + + + + + + + + + +
LinkClicksChange
Loading...
+
+
+ +
+
+

Filter Selections

+
+
+
+ + + + + + + + + + + + +
Filter NameFilter ValueCountChange
Loading...
+
+
+ +

+ Data sourced from Google Analytics | Generated - +

+
+ + + + diff --git a/gh-pages/hca-explorer/data/config.json b/gh-pages/hca-explorer/data/config.json new file mode 100644 index 000000000..42541b698 --- /dev/null +++ b/gh-pages/hca-explorer/data/config.json @@ -0,0 +1,53 @@ +{ + "site_title": "HCA Data Explorer User Analytics", + "logo_url": "https://explore.data.humancellatlas.org/images/hcaExplorer.png", + "favicon_url": "https://explore.data.humancellatlas.org/favicons/favicon.ico", + "logo_link": "https://explore.data.humancellatlas.org", + "primary_color": "#1C7CC7", + "primary_color_dark": "#005EA9", + "summary_stats": [ + { + "label": "Cohort Export Requests", + "event_keys": [ + "index_bulk_download_requested", + "index_file_manifest_requested", + "index_analyze_in_terra_requested" + ] + }, + { + "label": "Project Export Requests", + "event_keys": [ + "dataset_bulk_download_requested", + "dataset_file_manifest_requested", + "dataset_analyze_in_terra_requested" + ] + } + ], + "file_downloads_position": 3, + "event_counts": [ + { + "label": "Export to Terra\n(Single Project)", + "event_key": "dataset_analyze_in_terra_requested" + }, + { + "label": "Export to Terra\n(Cross-Dataset)", + "event_key": "index_analyze_in_terra_requested" + }, + { + "label": "curl Command\n(Single Project)", + "event_key": "dataset_bulk_download_requested" + }, + { + "label": "curl Command\n(Cross-Dataset)", + "event_key": "index_bulk_download_requested" + }, + { + "label": "File Manifest\n(Single Project)", + "event_key": "dataset_file_manifest_requested" + }, + { + "label": "File Manifest\n(Cross-Dataset)", + "event_key": "index_file_manifest_requested" + } + ] +} \ No newline at end of file diff --git a/gh-pages/hca-explorer/data/custom_events.json b/gh-pages/hca-explorer/data/custom_events.json new file mode 100644 index 000000000..e15b97c62 --- /dev/null +++ b/gh-pages/hca-explorer/data/custom_events.json @@ -0,0 +1,51 @@ +[ + { + "event_name": "filter_selected", + "label": "Filter Selections", + "current": 3458, + "prior": 2893, + "change": 0.1952989975803664 + }, + { + "event_name": "index_bulk_download_requested", + "label": "Cohort curl Download Requests", + "current": 29, + "prior": 9, + "change": 2.2222222222222223 + }, + { + "event_name": "index_file_manifest_requested", + "label": "Cohort File Manifest Requests", + "current": 13, + "prior": 6, + "change": 1.1666666666666667 + }, + { + "event_name": "index_analyze_in_terra_requested", + "label": "Cohort Analyze in Terra Requests", + "current": 34, + "prior": 26, + "change": 0.3076923076923077 + }, + { + "event_name": "dataset_analyze_in_terra_requested", + "label": "Project Analyze in Terra Requests", + "current": 5, + "prior": 0, + "change": null + }, + { + "event_name": "dataset_bulk_download_requested", + "label": "Project curl Download Requests", + "current": 438, + "prior": 362, + "change": 0.20994475138121546 + }, + { + "event_name": "dataset_file_manifest_requested", + "label": "Project File Manifest Requests", + "current": 42, + "prior": 0, + "change": null + } +] \ No newline at end of file diff --git a/gh-pages/hca-explorer/data/event_dataset_analyze_in_terra_requested_detail.json b/gh-pages/hca-explorer/data/event_dataset_analyze_in_terra_requested_detail.json new file mode 100644 index 000000000..815a09cbf --- /dev/null +++ b/gh-pages/hca-explorer/data/event_dataset_analyze_in_terra_requested_detail.json @@ -0,0 +1,26 @@ +[ + { + "page_path": "/projects/1c5eaabf-075b-4b7a-a9e6-07792c2034b3/export-to-terra", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Transcriptomic analysis of the ocular posterior segment completes a cell atlas of the human eye" + }, + { + "page_path": "/projects/4627f43e-a43f-44dd-8c4b-7efddb3f296d/export-to-terra", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single cell RNA sequencing to dissect the molecular heterogeneity in lupus nephritis" + }, + { + "page_path": "/projects/4d9d56e4-610d-4748-b57d-f8315e3f53a3/export-to-terra", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Refining Colorectal Cancer Classification and Clinical Stratification Through a Single-Cell Atlas" + }, + { + "page_path": "/projects/9c20a245-f2c0-43ae-82c9-2232ec6b594f/export-to-terra", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A multi-omics atlas of the human retina at single-cell resolution" + } +] \ No newline at end of file diff --git a/gh-pages/hca-explorer/data/event_dataset_bulk_download_requested_detail.json b/gh-pages/hca-explorer/data/event_dataset_bulk_download_requested_detail.json new file mode 100644 index 000000000..55d1628de --- /dev/null +++ b/gh-pages/hca-explorer/data/event_dataset_bulk_download_requested_detail.json @@ -0,0 +1,902 @@ +[ + { + "page_path": "/projects/cc95ff89-2e68-4a08-a234-480eca21ce79/get-curl-command", + "entity_name": "(not set)", + "count": 31, + "dataset_title": "A single cell immune cell atlas of human hematopoietic system" + }, + { + "page_path": "/projects/cfece4d2-f18d-44ad-a46a-42bbcb5cb3b7/get-curl-command", + "entity_name": "(not set)", + "count": 22, + "dataset_title": "Single-Cell Transcriptome and Downstream Analyses of Human Stomach Reveal the Cell Diversity and Developmental Features of Gastric and Metaplastic Mucosae" + }, + { + "page_path": "/projects/e9f36305-d857-44a3-93f0-df4e6007dc97/get-curl-command", + "entity_name": "(not set)", + "count": 18, + "dataset_title": "Spatial multi-omic map of human myocardial infarction" + }, + { + "page_path": "/projects/f2078d5f-2e7d-4844-8552-f7c41a231e52/get-curl-command", + "entity_name": "(not set)", + "count": 18, + "dataset_title": "Single-cell eQTL mapping identifies cell type-specific genetic control of autoimmune disease" + }, + { + "page_path": "/projects/091cf39b-01bc-42e5-9437-f419a66c8a45/get-curl-command", + "entity_name": "(not set)", + "count": 12, + "dataset_title": "Profiling of CD34+ cells from human bone marrow to understand hematopoiesis" + }, + { + "page_path": "/projects/896f377c-8e88-463e-82b0-b2a5409d6fe4/get-curl-command", + "entity_name": "(not set)", + "count": 12, + "dataset_title": "Single-cell atlas of healthy human blood unveils age-related loss of NKG2C+GZMB-CD8+ memory T cells and accumulation of type 2 memory T cells" + }, + { + "page_path": "/projects/ad98d3cd-26fb-4ee3-99c9-8a2ab085e737/get-curl-command", + "entity_name": "(not set)", + "count": 12, + "dataset_title": "Cells of the adult human heart" + }, + { + "page_path": "/projects/10201832-7c73-4033-9b65-3ef13d81656a/get-curl-command", + "entity_name": "(not set)", + "count": 8, + "dataset_title": "The Tabula Sapiens: A multiple-organ, single-cell transcriptomic atlas of humans" + }, + { + "page_path": "/projects/ef1d9888-fa86-47a4-bb72-0ab0f20f7004/get-curl-command", + "entity_name": "(not set)", + "count": 8, + "dataset_title": "Single-cell atlas of early human brain development highlights heterogeneity of human neuroepithelial cells and early radial glia." + }, + { + "page_path": "/projects/c5f46615-68de-4cf4-bbc2-a0ae10f08243/get-curl-command", + "entity_name": "(not set)", + "count": 7, + "dataset_title": "Developmental cell programs are co-opted in inflammatory skin disease." + }, + { + "page_path": "/projects/c6ef0270-eafc-43bd-8097-c10020a03cfc/get-curl-command", + "entity_name": "(not set)", + "count": 7, + "dataset_title": "Single-nucleus RNA sequencing in ischemic cardiomyopathy reveals common transcriptional profile underlying end-stage heart failure." + }, + { + "page_path": "/projects/f0f89c14-7460-4bab-9d42-22228a91f185/get-curl-command", + "entity_name": "(not set)", + "count": 7, + "dataset_title": "AIDA" + }, + { + "page_path": "/projects/c1810dbc-16d2-45c3-b45e-3e675f88d87b/get-curl-command", + "entity_name": "(not set)", + "count": 7, + "dataset_title": "A cell atlas of human thymic development defines T cell repertoire formation" + }, + { + "page_path": "/projects/c0518445-3b3b-49c6-b8fc-c41daa4eacba/get-curl-command", + "entity_name": "(not set)", + "count": 7, + "dataset_title": "A cellular census of human lungs identifies novel cell states in health and in asthma" + }, + { + "page_path": "/projects/2d559a6e-7cd9-432f-9f6e-0e4df03b0888/get-curl-command", + "entity_name": "(not set)", + "count": 6, + "dataset_title": "The immune cell landscape in kidneys of patients with lupus nephritis." + }, + { + "page_path": "/projects/455b46e6-d8ea-4611-861e-de720a562ada/get-curl-command", + "entity_name": "(not set)", + "count": 6, + "dataset_title": "Transcriptomic characterisation of haematopoietic stem and progenitor cells from human adult bone marrow, spleen and peripheral blood" + }, + { + "page_path": "/projects/8f1f653d-3ea1-4d8e-b4a7-b97dc852c2b1/get-curl-command", + "entity_name": "(not set)", + "count": 6, + "dataset_title": "Mapping single-cell transcriptomes in the intra-tumoral and associated territories of kidney cancer." + }, + { + "page_path": "/projects/16241d82-3119-4bdd-bba5-5097c0591ba0/get-curl-command", + "entity_name": "(not set)", + "count": 5, + "dataset_title": "Organization of the human intestine at single-cell resolution" + }, + { + "page_path": "/projects/4627f43e-a43f-44dd-8c4b-7efddb3f296d/get-curl-command", + "entity_name": "(not set)", + "count": 5, + "dataset_title": "Single cell RNA sequencing to dissect the molecular heterogeneity in lupus nephritis" + }, + { + "page_path": "/projects/85a9263b-0887-48ed-ab1a-ddfa773727b6/get-curl-command", + "entity_name": "(not set)", + "count": 5, + "dataset_title": "Spatial and single-cell transcriptional landscape of human cerebellar development" + }, + { + "page_path": "/projects/957261f7-2bd6-4358-a6ed-24ee080d5cfc/get-curl-command", + "entity_name": "(not set)", + "count": 5, + "dataset_title": "A spatially resolved atlas of the human lung characterizes a gland-associated immune niche" + }, + { + "page_path": "/projects/c16a754f-5da3-46ed-8c1e-6426af2ef625/get-curl-command", + "entity_name": "(not set)", + "count": 5, + "dataset_title": "Single-cell RNA-seq reveals ectopic and aberrant lung-resident cell populations in idiopathic pulmonary fibrosis" + }, + { + "page_path": "/projects/c4077b3c-5c98-4d26-a614-246d12c2e5d7/get-curl-command", + "entity_name": "(not set)", + "count": 5, + "dataset_title": "scRNA-seq assessment of the human lung, spleen, and esophagus tissue stability after cold preservation" + }, + { + "page_path": "/projects/ef1e3497-515e-4bbe-8d4c-10161854b699/get-curl-command", + "entity_name": "(not set)", + "count": 5, + "dataset_title": "A Single-Cell Atlas of the Human Healthy Airways" + }, + { + "page_path": "/projects/f83165c5-e2ea-4d15-a5cf-33f3550bffde/get-curl-command", + "entity_name": "(not set)", + "count": 5, + "dataset_title": "Reconstructing the human first trimester fetal-maternal interface using single cell transcriptomics" + }, + { + "page_path": "/projects/cd9d6360-ce38-4321-97df-f13c79e3cb84/get-curl-command", + "entity_name": "(not set)", + "count": 4, + "dataset_title": "Severe COVID-19 Is Marked by a Dysregulated Myeloid Cell Compartment" + }, + { + "page_path": "/projects/cdabcf0b-7602-4abf-9afb-3b410e545703/get-curl-command", + "entity_name": "(not set)", + "count": 4, + "dataset_title": "A blood atlas of COVID-19 defines hallmarks of disease severity and specificity" + }, + { + "page_path": "/projects/e925633f-abd9-486a-81c6-1a6a66891d23/get-curl-command", + "entity_name": "(not set)", + "count": 4, + "dataset_title": "Spatially resolved human kidney multi-omics single cell atlas highlights the key role of the fibrotic microenvironment in kidney disease progression" + }, + { + "page_path": "/projects/bcdf233f-9246-4c0c-9843-0514120b7e3a/get-curl-command", + "entity_name": "(not set)", + "count": 4, + "dataset_title": "Multimodal mapping of the tumor and peripheral blood immune landscape in human pancreatic cancer" + }, + { + "page_path": "/projects/85c0d6fa-f117-4d76-b01a-5d5e8f5f9188/get-curl-command", + "entity_name": "(not set)", + "count": 4, + "dataset_title": "Single-nucleus profiling of human dilated and hypertrophic cardiomyopathy" + }, + { + "page_path": "/projects/b3938158-4e8d-4fdb-9e13-9e94270dde16/get-curl-command", + "entity_name": "(not set)", + "count": 4, + "dataset_title": "Single-Nucleus and In Situ RNA\u2013Sequencing Reveal Cell Topographies in the Human Pancreas" + }, + { + "page_path": "/projects/9b876d31-0739-4e96-9846-f76e6a427279/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "A human breast atlas integrating single-cell proteomics and transcriptomics" + }, + { + "page_path": "/projects/efea6426-510a-4b60-9a19-277e52bfa815/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "Dissecting the protein and transcriptional responses of human immune cells to T cell and monocyte specific activation" + }, + { + "page_path": "/projects/da9d6f24-3bdf-4eaa-9e3f-f47ce2a65b36/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "Cross-Species Single-Cell Analysis of Pancreatic Ductal Adenocarcinoma Reveals Antigen-Presenting Cancer-Associated Fibroblasts" + }, + { + "page_path": "/projects/d012d476-8f8c-4ff3-89d6-ebbe22c1b5c1/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "Single-cell RNA-sequencing reveals the landscape of cervical cancer heterogeneity" + }, + { + "page_path": "/projects/cd61771b-661a-4e19-b269-6e5d95350de6/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "Intra- and Inter-cellular Rewiring of the Human Colon during Ulcerative Colitis." + }, + { + "page_path": "/projects/c211fd49-d980-4ba1-8c6a-c24254a3cb52/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "Genetic ancestry effects on the response to viral infection are pervasive but cell type specific" + }, + { + "page_path": "/projects/f7b46477-0f2a-4bff-a9b7-719e000499a3/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "Dysregulated lung stroma drives emphysema exacerbation by potentiating resident lymphocytes to suppress an epithelial stem cell reservoir" + }, + { + "page_path": "/projects/77c13c40-a598-4036-807f-be09209ec2dd/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "Single-cell profiling of healthy human kidney reveals features of sex-based transcriptional programs and tissue-specific immunity" + }, + { + "page_path": "/projects/64809a52-f703-4aec-b3a5-eca808a971d0/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "Spatial transcriptomics of healthy and fibrotic human liver at single-cell resolution" + }, + { + "page_path": "/projects/5f607e50-ba22-4598-b1e9-f3d9d7a35dcc/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "COVID-19 immune features revealed by a large-scale single-cell transcriptome atlas." + }, + { + "page_path": "/projects/2fe3c60b-ac1a-4c61-9b59-f6556c0fce63/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "A human fetal lung cell atlas uncovers proximal-distal gradients of differentiation and key regulators of epithelial fates" + }, + { + "page_path": "/projects/2caedc30-c816-4b99-a237-b9f3b458c8e5/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "Single-Cell Transcriptomics Reveal Immune Mechanisms of the Onset and Progression of IgA Nephropathy" + }, + { + "page_path": "/projects/1eba4d0b-2d15-4ba7-bb3c-d4654dd94519/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "Single-cell atlas of bronchoalveolar lavage from preschool cystic fibrosis reveals new cell phenotypes" + }, + { + "page_path": "/projects/6e465c30-1109-4c16-9fd5-deca9f9a05eb/get-curl-command", + "entity_name": "(not set)", + "count": 3, + "dataset_title": "Early lymph node T follicular helper cell signalling hub drives influenza vaccine response in an ancestrally diverse cohort" + }, + { + "page_path": "/projects/b10cd314-3e71-4437-9a16-77028d243e81/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "The normal human lymph node cell classification and landscape defined by high-dimensional spatial proteomic" + }, + { + "page_path": "/projects/72ff4818-5692-4bbc-8886-e47763531023/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Dysregulation of brain and choroid plexus cell types in severe COVID-19." + }, + { + "page_path": "/projects/77780d56-03c0-481f-aade-2038490cef9f/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Retinal ganglion cell-specific genetic regulation in primary open angle glaucoma" + }, + { + "page_path": "/projects/925f9a4c-cac0-444a-ad2c-612656ab3a85/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Spatially resolved multiomics of human cardiac niches" + }, + { + "page_path": "/projects/990d251f-6dab-4a98-a2b6-6cfe7e4708b9/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Single-Cell Lymphocyte Heterogeneity in Advanced Cutaneous T-cell Lymphoma Skin Tumors" + }, + { + "page_path": "/projects/9dd91b6e-7c62-49d3-a3d4-74f603deffdb/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Assessing Cellular and Transcriptional Diversity of Ileal Mucosa Among Treatment-Na\u00efve and Treated Crohn\u2019s Disease" + }, + { + "page_path": "/projects/a004b150-1c36-4af6-9bbd-070c06dbc17d/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "A single-cell atlas of the healthy breast tissues reveals clinically relevant clusters of breast epithelial cells" + }, + { + "page_path": "/projects/d5c91e92-2e7f-473d-8cf3-ab03bbae21c2/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Single-nucleus RNA sequencing and spatial transcriptomics decode cell type-specific drivers underlying IBM pathogenesis" + }, + { + "page_path": "/projects/c0fecf0b-af86-41b8-ba82-d5fd81b7542a/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Defining cardiac functional recovery in end-stage heart failure at single-cell resolution." + }, + { + "page_path": "/projects/c9e83418-a9f0-4ed1-ab4f-56d9513417bf/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Integrated multiomic characterization of congenital heart disease" + }, + { + "page_path": "/projects/cbd2911f-252b-4428-abde-69e270aefdfc/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Comprehensive cell atlas of the first-trimester developing human brain" + }, + { + "page_path": "/projects/daf9d982-7ce6-43f6-ab51-272577290606/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Single-Cell Transcriptomic Analysis of Human Lung Provides Insights into the Pathobiology of Pulmonary Fibrosis." + }, + { + "page_path": "/projects/6f03e4ad-9305-4bfa-a5b6-929ffb1d94bd/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Spatially organized multicellular immune hubs in human colorectal cancer" + }, + { + "page_path": "/projects/e1fda217-7ee1-4c1a-adfa-648279dafac6/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Single Nucleus RNA-sequencing Reveals Altered Intercellular Communication and Dendritic Cell Activation in Nonobstructive Hypertrophic Cardiomyopathy" + }, + { + "page_path": "/projects/fa3f460f-4fb9-4ced-b548-8ba6a8ecae3f/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Spatiotemporal Analysis of Human Intestinal Development at Single Cell Resolution - scRNA-Seq" + }, + { + "page_path": "/projects/71eb5f6d-cee0-4297-b503-b1125909b8c7/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Single-cell transcriptome profiling of the vaginal wall in women with severe anterior vaginal prolapse" + }, + { + "page_path": "/projects/dc0b65b0-7713-46f0-a339-0b03ea786046/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Pathogen-induced tissue-resident memory T H 17 (T RM 17) cells amplify autoimmune kidney disease" + }, + { + "page_path": "/projects/6e177195-0ac0-468b-99a2-87de96dc9db4/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Benchmarking Single-Cell RNA Sequencing Protocols for Cell Atlas Projects" + }, + { + "page_path": "/projects/425c2759-db66-4c93-a358-a562c069b1f1/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Spatial proteogenomics reveals distinct and evolutionarily conserved hepatic macrophage niches" + }, + { + "page_path": "/projects/6936da41-3692-46bb-bca1-cd0f507991e9/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "A molecular cell atlas of the human lung from single-cell RNA sequencing" + }, + { + "page_path": "/projects/04e4292c-f62f-4098-ae9b-fd69ae002a90/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Cross-tissue immune cell analysis reveals tissue-specific features in humans" + }, + { + "page_path": "/projects/12f32054-8f18-4dae-8959-bfce7e3108e7/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Single-cell sequencing links multiregional immune landscapes and tissue-resident T\u00a0cells in ccRCC to tumor topology and therapy efficacy." + }, + { + "page_path": "/projects/1662accf-0e0c-48c4-9314-5aba063f2220/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Spatial transcriptomic profiling of human retinoblastoma" + }, + { + "page_path": "/projects/16cd6791-2adb-4d0f-8222-0184dada6456/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Single-Cell Transcriptomics of Human Substantia Nigra in Parkinson's Disease" + }, + { + "page_path": "/projects/379ed69e-be05-48bc-af5e-a7fc589709bf/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Single-cell transcriptomic atlas of the human endometrium during the menstrual cycle" + }, + { + "page_path": "/projects/326b36bd-0975-475f-983b-56ddb8f73a4d/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Allergic inflammatory memory in human respiratory epithelial progenitor cells" + }, + { + "page_path": "/projects/457d0bfe-79e4-43f1-be5d-83bf080d809e/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Single-cell analysis reveals fibroblast heterogeneity and myofibroblasts in systemic sclerosis-associated interstitial lung disease" + }, + { + "page_path": "/projects/4a95101c-9ffc-4f30-a809-f04518a23803/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Single-cell transcriptomics of human T cells reveals tissue and activation signatures in health and disease" + }, + { + "page_path": "/projects/4d6f6c96-2a83-43d8-8fe1-0f53bffd4674/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Single cell RNA sequencing of human liver reveals distinct intrahepatic macrophage populations" + }, + { + "page_path": "/projects/50db6ba4-3986-4d55-86b7-e1a5a888a17b/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "An integrated single-cell reference atlas of the human endometrium" + }, + { + "page_path": "/projects/5116c081-8be7-49c5-8ce0-73b887328aa9/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "A comprehensive single cell transcriptional landscape of human hematopoietic progenitors" + }, + { + "page_path": "/projects/6621c827-b57a-4268-bc80-df4049140193/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Single cell transcriptome atlases of the developing mouse and human spinal cord." + }, + { + "page_path": "/projects/6735ff73-1a04-422e-b500-730202e46f8a/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Proliferating SPP1/MERTK-expressing macrophages in idiopathic pulmonary fibrosis" + }, + { + "page_path": "/projects/95d058bc-9cec-4c88-8d2c-05b4a45bf24f/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell protein activity analysis identifies recurrence-associated renal tumor macrophages." + }, + { + "page_path": "/projects/bc5512cc-9544-4aa4-8b75-8af445ee2257/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Regenerative lineages and immune-mediated pruning in lung cancer metastasis" + }, + { + "page_path": "/projects/ae71be1d-ddd8-4feb-9bed-24c3ddb6e1ad/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-Cell Transcriptome Profiling of Human Pancreatic Islets in Health and Type 2 Diabetes" + }, + { + "page_path": "/projects/ad3c5c48-ad28-43fd-9ec0-9b7a87e0ee6d/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell atlas of the human neonatal small intestine affected by necrotizing enterocolitis" + }, + { + "page_path": "/projects/a9301beb-e9fa-42fe-b75c-84e8a460c733/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A human cell atlas of fetal gene expression." + }, + { + "page_path": "/projects/a80a63f2-e223-4890-81b0-415855b89abc/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single cell RNA-seq of brain glioblastoma samples" + }, + { + "page_path": "/projects/9c20a245-f2c0-43ae-82c9-2232ec6b594f/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A multi-omics atlas of the human retina at single-cell resolution" + }, + { + "page_path": "/projects/87f519b4-8862-41f9-acff-75e823e0e430/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Cardiac cell type-specific gene regulatory programs and disease risk association" + }, + { + "page_path": "/projects/923d3231-7295-4184-b3f6-c3082766a8c7/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A Single-Cell Transcriptomic Atlas of Human Skin Aging." + }, + { + "page_path": "/projects/90bd6933-40c0-48d4-8d76-778c103bf545/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Precursors of human CD4+ cytotoxic T lymphocytes identified by single-cell transcriptome analysis" + }, + { + "page_path": "/projects/8fd1609b-cd2d-4b4d-bb96-49ae6b8ade2f/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Transcriptional Programming of Normal and Inflamed Human Epidermis at Single-Cell Resolution" + }, + { + "page_path": "/projects/8c4e43fb-f7f3-4446-8367-a3fe9e0b8fd7/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A Unique Cellular Organization of Human Distal Airways and Its Disarray in Chronic Obstructive Pulmonary Disease" + }, + { + "page_path": "/projects/8b9cb6ae-6a43-4e47-b9fb-3df7aeec941f/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Defining Transcriptional Signatures of Human Hair Follicle Cell States" + }, + { + "page_path": "/projects/8a666b76-daaf-4b1f-9414-e4807a1d1e8b/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single Cell, Single Nucleus and Spatial RNA Sequencing of the Human Liver Identifies Hepatic Stellate Cell and Cholangiocyte Heterogeneity" + }, + { + "page_path": "/projects/c41dffbf-ad83-447c-a0e1-13e689d9b258/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Resolving the fibrotic niche of human liver cirrhosis using single-cell transcriptomics" + }, + { + "page_path": "/projects/c1a9a93d-d9de-4e65-9619-a9cec1052eaa/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell RNA sequencing reveals profibrotic roles of distinct epithelial and mesenchymal lineages in pulmonary fibrosis" + }, + { + "page_path": "/projects/df8eb7ce-3707-46af-b823-e081a562e954/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Human subcutaneous and visceral adipocyte atlases uncover classical and non-classical adipocytes and depot-specific patterns" + }, + { + "page_path": "/projects/c7a342eb-777e-4479-95ce-468f5bbcd893/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A Single-Nucleus Atlas of Human Prenatal Inner Ear Development" + }, + { + "page_path": "/projects/c8e6c5d9-fcde-4845-bead-ff96999e3051/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell transcriptomic analyses provide insights into the developmental origins of neuroblastoma." + }, + { + "page_path": "/projects/fde199d2-a841-4ed1-aa65-b9e0af8969b1/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Cells of the human intestinal tract mapped across space and time" + }, + { + "page_path": "/projects/fc2a0b4e-1e4a-447b-a097-47b398402f37/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A single-cell atlas of human and mouse white adipose tissue" + }, + { + "page_path": "/projects/f8aa201c-4ff1-45a4-890e-840d63459ca2/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Structural Remodeling of the Human Colonic Mesenchyme in Inflammatory Bowel Disease" + }, + { + "page_path": "/projects/f48e7c39-cc67-4055-9d79-bc437892840c/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell RNA-seq of human peripheral blood NKT cells" + }, + { + "page_path": "/projects/e77fed30-959d-4fad-bc15-a0a5a85c21d2/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell transcriptomics of East-Asian pancreatic islets cells" + }, + { + "page_path": "/projects/e5fe8274-3769-4d7d-aa35-6d33c226ab43/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Human distal lung maps and lineage hierarchies reveal a bipotent progenitor" + }, + { + "page_path": "/projects/e4b18cd2-8f15-490d-b9f1-d118aa067dc3/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single cell RNA-seq analysis of adult and paediatric IDH-wildtype Glioblastomas" + }, + { + "page_path": "/projects/e255b1c6-1143-4fa6-83a8-528f15b41038/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A single-cell transcriptome atlas of human early embryogenesis" + }, + { + "page_path": "/projects/e090445c-6971-4212-bc5f-ae4ec3914102/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Integration of eQTL and a Single-Cell Atlas in the Human Eye Identifies Causal Genes for Age-Related Macular Degeneration" + }, + { + "page_path": "/projects/815c5ef5-0fb1-4eb7-9882-1d160362468e/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-nucleus chromatin accessibility and transcriptomic map of breast tissues of women of diverse genetic ancestry" + }, + { + "page_path": "/projects/dd7f2436-0c56-4709-bd17-e526bba4cc15/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single Cell RNA-Seq profiling of human embryonic kidney outer and inner cortical cells and kidney organoid cells" + }, + { + "page_path": "/projects/daef3fda-2620-45ae-a3f7-1613814a35bf/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell multi-omics analysis of human pancreatic islets reveals novel cellular states in type 1 diabetes." + }, + { + "page_path": "/projects/d8ae869c-39c2-4cdd-b3fc-2d0d8f60e7b8/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell transcriptomes from human kidneys reveal the cellular identity of renal tumors." + }, + { + "page_path": "/projects/cea413af-79b3-4f11-8b48-383fe9a65fbe/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single cell landscape of mesenchymal and endothelial cells in healthy human liver" + }, + { + "page_path": "/projects/cbd3d276-9f24-4af9-8381-b11f6cdbdc4b/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell transcriptomics reveals distinct effector profiles of infiltrating T cells in lupus skin and kidney" + }, + { + "page_path": "/projects/8185730f-4113-40d3-9cc3-929271784c2b/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A single-cell transcriptome atlas of the adult human retina" + }, + { + "page_path": "/projects/66d7d92a-d6c5-492c-815b-f81c7c93c984/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single cell transcriptomics of human epidermis identifies basal stem cell transition states." + }, + { + "page_path": "/projects/7f9766ff-bb12-4279-b340-78d140bdd7ba/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell RNA sequencing reveals the effects of chemotherapy on human pancreatic adenocarcinoma and its tumor microenvironment" + }, + { + "page_path": "/projects/7c75f07c-608d-4c4a-a1b7-b13d11c0ad31/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-Cell Map of Diverse Immune Phenotypes in the Breast Tumor Microenvironment." + }, + { + "page_path": "/projects/34c9a62c-a610-4e31-b343-8fb7be676f8c/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Dissecting the cellular specificity of smoking effects and reconstructing lineages in the human airway epithelium" + }, + { + "page_path": "/projects/3373e59c-525f-4a83-8c9c-d8b280454697/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Molecular Pathways of Colon Inflammation Induced by Cancer Immunotherapy" + }, + { + "page_path": "/projects/30dc3964-1135-4b56-b393-ce2dcbc6e379/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Cell Atlas of The Human Fovea and Peripheral Retina" + }, + { + "page_path": "/projects/2f676143-80c2-4bc6-b7b4-2613fe0fadf0/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Integrative analysis of cell state changes in lung fibrosis with peripheral protein biomarkers" + }, + { + "page_path": "/projects/2ef3655a-973d-4d69-9b41-21fa4041eed7/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell RNA sequencing of human kidney" + }, + { + "page_path": "/projects/28dd1438-8f40-40d0-8e53-ee3301b66218/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A transcriptional cross species map of pancreatic islet cells." + }, + { + "page_path": "/projects/2245bca0-6563-4e88-ab26-f2b8f60383a7/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A cell and transcriptome atlas of human arterial vasculature" + }, + { + "page_path": "/projects/1dddae6e-3753-48af-b20e-fa22abad125d/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Cell Types of the Human Retina and Its Organoids at Single-Cell Resolution" + }, + { + "page_path": "/projects/1c4cbdd4-33e3-4ded-ab43-5958de817123/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Collagen-producing lung cell atlas identifies multiple subsets with distinct localization and relevance to fibrosis" + }, + { + "page_path": "/projects/1688d7cc-6f5c-49ef-b353-e308b61d4e4c/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Ulcerative colitis is characterized by a plasmablast-skewed humoral response associated with disease activity" + }, + { + "page_path": "/projects/1538d572-bcb7-426b-8d2c-84f3a7f87bb0/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Local and systemic responses to SARS-CoV-2 infection in children and adults" + }, + { + "page_path": "/projects/10a845f7-0361-46fa-92a3-2a36483136b1/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell transcriptomics provides insights into hypertrophic cardiomyopathy" + }, + { + "page_path": "/projects/0cc58d0b-1734-4e1d-9113-b32e52f75e36/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "An Atlas of Cells in the Human Tonsil" + }, + { + "page_path": "/projects/0562d2ae-0b8a-459e-bbc0-6357108e5da9/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Improving fibroblast characterization using single-cell RNA sequencing: an optimized tissue disaggregation and data processing pipeline." + }, + { + "page_path": "/projects/01aacb68-4076-4fd9-9eb9-aba0f48c1b5a/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell multiomic profiling of human lungs reveals cell-type-specific and age-dynamic control of SARS-CoV2 host genes" + }, + { + "page_path": "/projects/3c27d2dd-b180-4b2b-bf05-e2e418393fd1/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell transcriptomics of normal pancreas, intraductal papillary mucinous neoplasm, and pancreatic adenosquamous carcinoma reveals the heterogeneous progression of pancreatic ductal and stromal cells" + }, + { + "page_path": "/projects/3ce9ae94-c469-419a-9637-5d138a4e642f/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Integrated analysis of multimodal single-cell data" + }, + { + "page_path": "/projects/4bcc16b5-7a47-45bb-b9c0-be9d5336df2d/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single cell atlas of the human retina" + }, + { + "page_path": "/projects/5bd01deb-01ee-4611-8efd-cf0ec5f56ac4/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Classification of human chronic inflammatory skin disease based on single-cell immune profiling" + }, + { + "page_path": "/projects/7c599029-7a3c-4b5c-8e79-e72c9a9a65fe/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell analyses of renal cell cancers reveal insights into tumor microenvironment, cell of origin, and therapy response" + }, + { + "page_path": "/projects/7ac8822c-4ef0-4194-adf0-74290611b1c6/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "COVID-19 severity correlates with airway epithelium-immune cell interactions identified by single-cell analysis." + }, + { + "page_path": "/projects/79351583-b212-44ba-b473-731bdcddb407/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell dissection of the human brain vasculature" + }, + { + "page_path": "/projects/73769e0a-5fcd-41f4-9083-41ae08bfa4c1/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A proximal-to-distal survey of healthy adult\u00a0human\u00a0small intestine and colon epithelium by single-cell transcriptomics" + }, + { + "page_path": "/projects/6874b7eb-3445-47ec-8773-75141430e169/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell RNA sequencing reveals markers of disease progression in primary cutaneous T-cell lymphoma" + }, + { + "page_path": "/projects/6179c38c-9987-4e7c-a4bb-d34cf33a3c3f/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Multimodal profiling reveals tissue-directed signatures of human immune cells altered with age" + }, + { + "page_path": "/projects/5a54c617-0eed-486e-8c1a-8a8041fc1729/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Lung transplantation for patients with severe COVID-19" + }, + { + "page_path": "/projects/4d9d56e4-610d-4748-b57d-f8315e3f53a3/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Refining Colorectal Cancer Classification and Clinical Stratification Through a Single-Cell Atlas" + }, + { + "page_path": "/projects/58028aa8-0ed2-49ca-b60f-15e2ed5989d5/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "SARS\u2010CoV\u20102 receptor ACE2 and TMPRSS2 are primarily expressed in bronchial transient secretory cells" + }, + { + "page_path": "/projects/57a2c2de-b0d4-465a-be53-a41e59e75fab/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Characterization of altered molecular mechanisms in Parkinson's disease through cell type-resolved multiomics analyses" + }, + { + "page_path": "/projects/54aaa409-dc28-48c5-be26-d368b4a5d5c6/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Identification of distinct synovial fibroblast subsets associated with pain and progression of knee osteoarthritis using single-cell RNA sequencing" + }, + { + "page_path": "/projects/52b29aa4-c8d6-42b4-807a-b35be94469ca/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A survey of human brain transcriptome diversity at the single cell level" + }, + { + "page_path": "/projects/51f02950-ee25-4f4b-8d07-59aa99bb3498/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell transcriptomes of the human skin reveal age-related loss of fibroblast priming" + }, + { + "page_path": "/projects/50154d1e-2308-44bf-9608-10c7afaa560b/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Differential pre-malignant programs and microenvironment chart distinct paths to malignancy in human colorectal polyps" + }, + { + "page_path": "/projects/febdaddd-ad3c-4f4a-820f-ade15c48545a/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A Single-Cell Atlas Of Human Pediatric Liver Reveals Age-Related Hepatic Gene Signatures" + } +] \ No newline at end of file diff --git a/gh-pages/hca-explorer/data/event_dataset_file_manifest_requested_detail.json b/gh-pages/hca-explorer/data/event_dataset_file_manifest_requested_detail.json new file mode 100644 index 000000000..173de1b91 --- /dev/null +++ b/gh-pages/hca-explorer/data/event_dataset_file_manifest_requested_detail.json @@ -0,0 +1,164 @@ +[ + { + "page_path": "/projects/cc95ff89-2e68-4a08-a234-480eca21ce79/project-metadata", + "entity_name": "(not set)", + "count": 10, + "dataset_title": "A single cell immune cell atlas of human hematopoietic system" + }, + { + "page_path": "/projects/f0f89c14-7460-4bab-9d42-22228a91f185/project-metadata", + "entity_name": "(not set)", + "count": 4, + "dataset_title": "AIDA" + }, + { + "page_path": "/projects/16241d82-3119-4bdd-bba5-5097c0591ba0/project-metadata", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Organization of the human intestine at single-cell resolution" + }, + { + "page_path": "/projects/a004b150-1c36-4af6-9bbd-070c06dbc17d/project-metadata", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "A single-cell atlas of the healthy breast tissues reveals clinically relevant clusters of breast epithelial cells" + }, + { + "page_path": "/projects/c5f46615-68de-4cf4-bbc2-a0ae10f08243/project-metadata", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Developmental cell programs are co-opted in inflammatory skin disease." + }, + { + "page_path": "/projects/923d3231-7295-4184-b3f6-c3082766a8c7/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A Single-Cell Transcriptomic Atlas of Human Skin Aging." + }, + { + "page_path": "/projects/e870ab56-3537-4b6d-a66f-534fbf8cc57f/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Activation of CD8+ T Cells in Chronic Obstructive Pulmonary Disease Lung" + }, + { + "page_path": "/projects/cfece4d2-f18d-44ad-a46a-42bbcb5cb3b7/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-Cell Transcriptome and Downstream Analyses of Human Stomach Reveal the Cell Diversity and Developmental Features of Gastric and Metaplastic Mucosae" + }, + { + "page_path": "/projects/cae461de-ecbd-482f-a5d4-11d607fc12ba/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "The landscape of immune dysregulation in Crohn's disease revealed through single-cell transcriptomic profiling in the ileum and colon" + }, + { + "page_path": "/projects/c7a342eb-777e-4479-95ce-468f5bbcd893/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A Single-Nucleus Atlas of Human Prenatal Inner Ear Development" + }, + { + "page_path": "/projects/c281ab63-7b7d-4bdf-b761-9b1baaa18f82/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-Cell Atlas of Lineage States, Tumor Microenvironment, and Subtype-Specific Expression Programs in Gastric Cancer" + }, + { + "page_path": "/projects/c1810dbc-16d2-45c3-b45e-3e675f88d87b/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A cell atlas of human thymic development defines T cell repertoire formation" + }, + { + "page_path": "/projects/ad3c5c48-ad28-43fd-9ec0-9b7a87e0ee6d/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single-cell atlas of the human neonatal small intestine affected by necrotizing enterocolitis" + }, + { + "page_path": "/projects/9c20a245-f2c0-43ae-82c9-2232ec6b594f/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A multi-omics atlas of the human retina at single-cell resolution" + }, + { + "page_path": "/projects/94023a08-611d-4f22-a8c9-90956e091b2e/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Healthy human kidney cell type single cell RNA-seq data" + }, + { + "page_path": "/projects/6179c38c-9987-4e7c-a4bb-d34cf33a3c3f/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Multimodal profiling reveals tissue-directed signatures of human immune cells altered with age" + }, + { + "page_path": "/projects/6e465c30-1109-4c16-9fd5-deca9f9a05eb/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Early lymph node T follicular helper cell signalling hub drives influenza vaccine response in an ancestrally diverse cohort" + }, + { + "page_path": "/projects/6735ff73-1a04-422e-b500-730202e46f8a/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Proliferating SPP1/MERTK-expressing macrophages in idiopathic pulmonary fibrosis" + }, + { + "page_path": "/projects/4bcc16b5-7a47-45bb-b9c0-be9d5336df2d/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single cell atlas of the human retina" + }, + { + "page_path": "/projects/30dc3964-1135-4b56-b393-ce2dcbc6e379/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Cell Atlas of The Human Fovea and Peripheral Retina" + }, + { + "page_path": "/projects/2af52a13-65cb-4973-b513-39be38f2df3f/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Single cell transcriptional and chromatin accessibility profiling redefine cellular heterogeneity in the adult human kidney" + }, + { + "page_path": "/projects/1ffa2223-28a6-4133-a5a4-badd00faf4bc/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A spatially resolved single-cell genomic atlas of the adult human breast" + }, + { + "page_path": "/projects/1fac187b-1c3f-41c4-b6b6-6a9a8c0489d1/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Construction of A Human Cell Landscape by Single-cell mRNA-seq" + }, + { + "page_path": "/projects/1cd1f41f-f81a-486b-a05b-66ec60f81dcf/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "A single-cell survey of the human first-trimester placenta and decidua" + }, + { + "page_path": "/projects/1c5eaabf-075b-4b7a-a9e6-07792c2034b3/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Transcriptomic analysis of the ocular posterior segment completes a cell atlas of the human eye" + }, + { + "page_path": "/projects/065e6c13-ad6b-46a3-8075-c3137eb03068/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Resolving the intertwining of inflammation and fibrosis in human heart failure at single-cell level" + }, + { + "page_path": "/projects/f7b46477-0f2a-4bff-a9b7-719e000499a3/project-metadata", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Dysregulated lung stroma drives emphysema exacerbation by potentiating resident lymphocytes to suppress an epithelial stem cell reservoir" + } +] \ No newline at end of file diff --git a/gh-pages/hca-explorer/data/file_downloads.json b/gh-pages/hca-explorer/data/file_downloads.json new file mode 100644 index 000000000..e888e2a36 --- /dev/null +++ b/gh-pages/hca-explorer/data/file_downloads.json @@ -0,0 +1,50 @@ +[ + { + "entity_name": "-Human-10x3pv2--21_metadata_26-08-2024.xlsx", + "dataset_id": "888f1766-4c84-43bb-8717-b5f9d2046097", + "related_entity_name": "scRNA-Seq Reveals New Enteric Nervous System Roles for GDNF, NRTN, and TBX3", + "count": 1 + }, + { + "entity_name": "0002a1fa-c68d-475a-a07f-06d91a08d8d8_qc.bam", + "dataset_id": "99101928-d9b1-4aaf-b759-e97958ac7403", + "related_entity_name": "Single-Cell Transcriptomics of the Human Endocrine Pancreas", + "count": 1 + }, + { + "entity_name": "1-s2.0-S1074761320305045-mmc2.xlsx", + "dataset_id": "c8e6c5d9-fcde-4845-bead-ff96999e3051", + "related_entity_name": "Single-cell transcriptomic analyses provide insights into the developmental origins of neuroblastoma", + "count": 1 + }, + { + "entity_name": "583B_002_GEX_CZI-IA9924326_S1_L001_R2_001.fastq.gz", + "dataset_id": "6179c38c-9987-4e7c-a4bb-d34cf33a3c3f", + "related_entity_name": "Multimodal profiling reveals tissue-directed signatures of human immune cells altered with age", + "count": 1 + }, + { + "entity_name": "CB-U69_4.png", + "dataset_id": "9ff75ece-ce81-483a-bb1f-85e727f3805b", + "related_entity_name": "Transcriptomic and spatial dissection of human ex\u00a0vivo right atrial tissue reveals proinflammatory m", + "count": 1 + }, + { + "entity_name": "DevelopmentalAdrenalNB_metadata_22-05-2025.xlsx", + "dataset_id": "e889ffc9-86f6-44f5-b684-dfce78e552a3", + "related_entity_name": "Single-Cell Characterization of Malignant Phenotypes and Developmental Trajectories of Adrenal Neuro", + "count": 1 + }, + { + "entity_name": "GSE183904_RAW.tar", + "dataset_id": "c281ab63-7b7d-4bdf-b761-9b1baaa18f82", + "related_entity_name": "Single-Cell Atlas of Lineage States, Tumor Microenvironment, and Subtype-Specific Expression Program", + "count": 1 + }, + { + "entity_name": "SRR8532661_1.fastq", + "dataset_id": "0562d2ae-0b8a-459e-bbc0-6357108e5da9", + "related_entity_name": "Improving fibroblast characterization using single-cell RNA sequencing: an optimized tissue disaggre", + "count": 1 + } +] \ No newline at end of file diff --git a/gh-pages/hca-explorer/data/filter_selected.json b/gh-pages/hca-explorer/data/filter_selected.json new file mode 100644 index 000000000..d4cce25f0 --- /dev/null +++ b/gh-pages/hca-explorer/data/filter_selected.json @@ -0,0 +1,9956 @@ +[ + { + "filterName": "genusSpecies", + "filterValue": "Homo sapiens", + "count": 96, + "change": 0.12609970674486815 + }, + { + "filterName": "donorDisease", + "filterValue": "normal", + "count": 56, + "change": 0.2969396195202647 + }, + { + "filterName": "accessible", + "filterValue": "true", + "count": 46, + "change": 0.4838709677419355 + }, + { + "filterName": "specimenOrgan", + "filterValue": "blood", + "count": 38, + "change": 0.37290322580645174 + }, + { + "filterName": "specimenOrgan", + "filterValue": "kidney", + "count": 33, + "change": 0.10394265232974909 + }, + { + "filterName": "specimenOrgan", + "filterValue": "bone marrow", + "count": 30, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "liver", + "count": 28, + "change": -0.06332138590203107 + }, + { + "filterName": "sampleEntityType", + "filterValue": "specimens", + "count": 27, + "change": 0.8759305210918116 + }, + { + "filterName": "specimenDisease", + "filterValue": "normal", + "count": 26, + "change": 2.9139784946236555 + }, + { + "filterName": "nucleicAcidSource", + "filterValue": "single cell", + "count": 23, + "change": 0.38494623655913984 + }, + { + "filterName": "bionetworkName", + "filterValue": "Immune", + "count": 22, + "change": 0.9870967741935484 + }, + { + "filterName": "specimenOrgan", + "filterValue": "heart", + "count": 22, + "change": -0.20516129032258057 + }, + { + "filterName": "organPart", + "filterValue": "heart left ventricle", + "count": 22, + "change": 0.10394265232974909 + }, + { + "filterName": "bionetworkName", + "filterValue": "Lung", + "count": 21, + "change": 0.5806451612903225 + }, + { + "filterName": "specimenOrgan", + "filterValue": "brain", + "count": 21, + "change": -0.1378299120234604 + }, + { + "filterName": "bionetworkName", + "filterValue": "Gut", + "count": 21, + "change": 0.7243401759530792 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin of body", + "count": 20, + "change": 0.38957816377171217 + }, + { + "filterName": "specimenOrgan", + "filterValue": "pancreas", + "count": 20, + "change": 0.12903225806451601 + }, + { + "filterName": "donorDisease", + "filterValue": "colorectal cancer", + "count": 20, + "change": 0.06261859582542684 + }, + { + "filterName": "organPart", + "filterValue": "blood", + "count": 17, + "change": -0.040322580645161366 + }, + { + "filterName": "specimenOrgan", + "filterValue": "colon", + "count": 17, + "change": 0.18114143920595538 + }, + { + "filterName": "specimenOrgan", + "filterValue": "lung", + "count": 17, + "change": 0.18114143920595538 + }, + { + "filterName": "organPart", + "filterValue": "bone marrow", + "count": 16, + "change": 0.4451612903225808 + }, + { + "filterName": "selectedCellType", + "filterValue": "peripheral blood mononuclear cell", + "count": 16, + "change": 6.225806451612903 + }, + { + "filterName": "specimenOrgan", + "filterValue": "small intestine", + "count": 16, + "change": 0.6057347670250897 + }, + { + "filterName": "donorDisease", + "filterValue": "breast cancer", + "count": 15, + "change": -0.153225806451613 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x scATAC-seq", + "count": 15, + "change": 0.12903225806451601 + }, + { + "filterName": "bionetworkName", + "filterValue": "Kidney", + "count": 14, + "change": 1.10752688172043 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 3' v2", + "count": 13, + "change": 0.4677419354838708 + }, + { + "filterName": "selectedCellType", + "filterValue": "T cell", + "count": 13, + "change": 0.6774193548387097 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 3' v3", + "count": 12, + "change": 0.35483870967741926 + }, + { + "filterName": "donorDisease", + "filterValue": "prostate cancer", + "count": 12, + "change": 1.7096774193548385 + }, + { + "filterName": "specimenOrgan", + "filterValue": "hematopoietic system", + "count": 12, + "change": 0.35483870967741926 + }, + { + "filterName": "fileFormat", + "filterValue": "fastq.gz", + "count": 12, + "change": 0.5483870967741935 + }, + { + "filterName": "bionetworkName", + "filterValue": "Heart", + "count": 11, + "change": 0.10394265232974909 + }, + { + "filterName": "developmentStage", + "filterValue": "human adult stage", + "count": 11, + "change": -0.23573200992555832 + }, + { + "filterName": "bionetworkName", + "filterValue": "Skin", + "count": 11, + "change": 2.311827956989247 + }, + { + "filterName": "developmentStage", + "filterValue": "fetal stage", + "count": 11, + "change": -0.41555977229601526 + }, + { + "filterName": "modelOrgan", + "filterValue": "heart", + "count": 11, + "change": 0.10394265232974909 + }, + { + "filterName": "modelOrgan", + "filterValue": "lung", + "count": 11, + "change": -0.23573200992555832 + }, + { + "filterName": "organPart", + "filterValue": "colon", + "count": 10, + "change": 2.010752688172043 + }, + { + "filterName": "specimenOrgan", + "filterValue": "eye", + "count": 10, + "change": 0.8064516129032258 + }, + { + "filterName": "bionetworkName", + "filterValue": "Adipose", + "count": 10, + "change": 8.032258064516128 + }, + { + "filterName": "donorDisease", + "filterValue": "type 2 diabetes mellitus", + "count": 10, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Liver", + "count": 10, + "change": 0.29032258064516125 + }, + { + "filterName": "donorDisease", + "filterValue": "lung cancer", + "count": 10, + "change": -0.1788856304985338 + }, + { + "filterName": "fileFormat", + "filterValue": "h5ad", + "count": 10, + "change": 0.5053763440860215 + }, + { + "filterName": "genusSpecies", + "filterValue": "Mus musculus", + "count": 10, + "change": 1.258064516129032 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 5' v1", + "count": 10, + "change": 0.29032258064516125 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 5' v2", + "count": 10, + "change": 0.29032258064516125 + }, + { + "filterName": "modelOrgan", + "filterValue": "bone marrow", + "count": 10, + "change": 8.032258064516128 + }, + { + "filterName": "selectedCellType", + "filterValue": "fibroblast", + "count": 10, + "change": 3.516129032258064 + }, + { + "filterName": "specimenOrgan", + "filterValue": "intestine", + "count": 10, + "change": 1.258064516129032 + }, + { + "filterName": "specimenOrgan", + "filterValue": "breast", + "count": 9, + "change": 0.16129032258064524 + }, + { + "filterName": "bionetworkName", + "filterValue": "Liver", + "count": 9, + "change": 1.7096774193548385 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X 3' v2 sequencing", + "count": 9, + "change": 3.064516129032258 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x multiome", + "count": 9, + "change": -0.26099706744868034 + }, + { + "filterName": "modelOrgan", + "filterValue": "blood", + "count": 9, + "change": 1.032258064516129 + }, + { + "filterName": "developmentStage", + "filterValue": "adolescent stage", + "count": 9, + "change": 1.7096774193548385 + }, + { + "filterName": "developmentStage", + "filterValue": "newborn human stage", + "count": 9, + "change": 1.032258064516129 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "CITE-seq", + "count": 9, + "change": 7.129032258064516 + }, + { + "filterName": "organPart", + "filterValue": "liver", + "count": 9, + "change": -0.09677419354838701 + }, + { + "filterName": "specimenOrgan", + "filterValue": "large intestine", + "count": 9, + "change": 1.7096774193548385 + }, + { + "filterName": "developmentStage", + "filterValue": "child stage", + "count": 9, + "change": -0.26099706744868034 + }, + { + "filterName": "modelOrgan", + "filterValue": "kidney", + "count": 9, + "change": 0.016129032258064502 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skeletal muscle organ", + "count": 9, + "change": 1.032258064516129 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skeletal muscle tissue", + "count": 9, + "change": 1.032258064516129 + }, + { + "filterName": "bionetworkName", + "filterValue": "Pancreas", + "count": 8, + "change": 0.8064516129032258 + }, + { + "filterName": "donorDisease", + "filterValue": "Alzheimer disease", + "count": 8, + "change": 0.032258064516129004 + }, + { + "filterName": "donorDisease", + "filterValue": "systemic lupus erythematosus", + "count": 8, + "change": -0.6559139784946236 + }, + { + "filterName": "modelOrgan", + "filterValue": "brain", + "count": 8, + "change": -0.343108504398827 + }, + { + "filterName": "organPart", + "filterValue": "Brain", + "count": 8, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "adipose tissue", + "count": 8, + "change": 0.20430107526881724 + }, + { + "filterName": "specimenOrgan", + "filterValue": "thymus", + "count": 8, + "change": -0.343108504398827 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic human stage", + "count": 8, + "change": -0.4441687344913151 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x multiome ATAC v1", + "count": 8, + "change": -0.3978494623655914 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "ATACseq", + "count": 8, + "change": 0.20430107526881724 + }, + { + "filterName": "specimenOrgan", + "filterValue": "peripheral blood mononuclear cell", + "count": 8, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "placenta", + "count": 8, + "change": -0.2774193548387096 + }, + { + "filterName": "bionetworkName", + "filterValue": "Development", + "count": 7, + "change": 2.161290322580645 + }, + { + "filterName": "donorDisease", + "filterValue": "heart failure", + "count": 7, + "change": 1.10752688172043 + }, + { + "filterName": "projectTitle", + "filterValue": "Single cell transcriptional profiling of peripheral blood mononuclear cells (PBMCs) from mice flown ", + "count": 7, + "change": 2.161290322580645 + }, + { + "filterName": "donorDisease", + "filterValue": "pancreatic ductal adenocarcinoma", + "count": 7, + "change": 0.053763440860215006 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X 3' v3", + "count": 7, + "change": 0.2645161290322582 + }, + { + "filterName": "specimenOrgan", + "filterValue": "lymph node", + "count": 7, + "change": -0.2974910394265232 + }, + { + "filterName": "specimenOrgan", + "filterValue": "muscle organ", + "count": 7, + "change": 0.2645161290322582 + }, + { + "filterName": "bionetworkName", + "filterValue": "Eye", + "count": 7, + "change": 2.161290322580645 + }, + { + "filterName": "developmentStage", + "filterValue": "infant stage", + "count": 7, + "change": -0.4731182795698925 + }, + { + "filterName": "organPart", + "filterValue": "null", + "count": 7, + "change": 5.32258064516129 + }, + { + "filterName": "selectedCellType", + "filterValue": "neuron", + "count": 7, + "change": 0.2645161290322582 + }, + { + "filterName": "bionetworkName", + "filterValue": "Oral and Craniofacial", + "count": 7, + "change": 2.161290322580645 + }, + { + "filterName": "donorDisease", + "filterValue": "psoriasis", + "count": 7, + "change": 2.161290322580645 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "ATAC-seq", + "count": 7, + "change": -0.20967741935483875 + }, + { + "filterName": "selectedCellType", + "filterValue": "leukocyte", + "count": 7, + "change": 2.161290322580645 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "ATAC 10x v1", + "count": 7, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "scATAC-seq", + "count": 7, + "change": -0.20967741935483875 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "scATAC-seq (cell index)", + "count": 7, + "change": -0.20967741935483875 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-Cell Characterization of Malignant Phenotypes and Developmental Trajectories of Adrenal Neuro", + "count": 7, + "change": null + }, + { + "filterName": "bionetworkName", + "filterValue": "Organoid", + "count": 6, + "change": 4.419354838709677 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 3' v1", + "count": 6, + "change": 0.35483870967741926 + }, + { + "filterName": "modelOrgan", + "filterValue": "immune system", + "count": 6, + "change": 4.419354838709677 + }, + { + "filterName": "modelOrgan", + "filterValue": "null", + "count": 6, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "heart right ventricle", + "count": 6, + "change": -0.22580645161290325 + }, + { + "filterName": "organPart", + "filterValue": "sigmoid colon", + "count": 6, + "change": 4.419354838709677 + }, + { + "filterName": "sampleEntityType", + "filterValue": "cell_lines", + "count": 6, + "change": -0.32258064516129037 + }, + { + "filterName": "specimenOrgan", + "filterValue": "uterus", + "count": 6, + "change": -0.22580645161290325 + }, + { + "filterName": "developmentStage", + "filterValue": "12th week post-fertilization human stage", + "count": 6, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "diabetes mellitus", + "count": 6, + "change": 0.08387096774193559 + }, + { + "filterName": "fileFormat", + "filterValue": "loom", + "count": 6, + "change": 1.7096774193548385 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X 3' v2", + "count": 6, + "change": 0.08387096774193559 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "CITE-seq (cell surface protein profiling)", + "count": 6, + "change": null + }, + { + "filterName": "modelOrgan", + "filterValue": "liver", + "count": 6, + "change": -0.5073313782991202 + }, + { + "filterName": "modelOrgan", + "filterValue": "skeletal muscle organ", + "count": 6, + "change": 4.419354838709677 + }, + { + "filterName": "selectedCellType", + "filterValue": "endothelial cell of lymphatic vessel", + "count": 6, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "Heart", + "count": 6, + "change": -0.3978494623655914 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X 5' v1", + "count": 6, + "change": 0.8064516129032258 + }, + { + "filterName": "selectedCellType", + "filterValue": "B cell", + "count": 6, + "change": 1.7096774193548385 + }, + { + "filterName": "selectedCellType", + "filterValue": "epithelial cell", + "count": 6, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "myeloid cell", + "count": 6, + "change": 4.419354838709677 + }, + { + "filterName": "specimenOrgan", + "filterValue": "ovary", + "count": 6, + "change": 0.35483870967741926 + }, + { + "filterName": "biologicalSex", + "filterValue": "female", + "count": 5, + "change": -0.6236559139784946 + }, + { + "filterName": "bionetworkName", + "filterValue": "Breast", + "count": 5, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "adult", + "count": 5, + "change": -0.5483870967741935 + }, + { + "filterName": "donorDisease", + "filterValue": "hypertrophic cardiomyopathy", + "count": 5, + "change": 1.258064516129032 + }, + { + "filterName": "donorDisease", + "filterValue": "lupus nephritis", + "count": 5, + "change": -0.24731182795698925 + }, + { + "filterName": "donorDisease", + "filterValue": "ovarian cancer", + "count": 5, + "change": 0.5053763440860215 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 3' v3 sequencing", + "count": 5, + "change": 0.12903225806451601 + }, + { + "filterName": "modelOrgan", + "filterValue": "intestine", + "count": 5, + "change": 3.516129032258064 + }, + { + "filterName": "modelOrgan", + "filterValue": "skin", + "count": 5, + "change": 0.5053763440860215 + }, + { + "filterName": "organPart", + "filterValue": "ascending colon", + "count": 5, + "change": 3.516129032258064 + }, + { + "filterName": "organPart", + "filterValue": "descending colon", + "count": 5, + "change": 1.258064516129032 + }, + { + "filterName": "organPart", + "filterValue": "small intestine", + "count": 5, + "change": 1.258064516129032 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Adipose tissue", + "count": 5, + "change": 0.5053763440860215 + }, + { + "filterName": "specimenOrgan", + "filterValue": "retina", + "count": 5, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "spinal cord", + "count": 5, + "change": 0.12903225806451601 + }, + { + "filterName": "specimenOrgan", + "filterValue": "stomach", + "count": 5, + "change": -0.3548387096774194 + }, + { + "filterName": "specimenOrgan", + "filterValue": "testis", + "count": 5, + "change": 1.258064516129032 + }, + { + "filterName": "developmentStage", + "filterValue": "13th week post-fertilization human stage", + "count": 5, + "change": -0.24731182795698925 + }, + { + "filterName": "developmentStage", + "filterValue": "15th week post-fertilization human stage", + "count": 5, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "16th week post-fertilization human stage", + "count": 5, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "17th week post-fertilization human stage", + "count": 5, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "18th week post-fertilization human stage", + "count": 5, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 22", + "count": 5, + "change": 0.5053763440860215 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 23", + "count": 5, + "change": 0.5053763440860215 + }, + { + "filterName": "developmentStage", + "filterValue": "embryo stage", + "count": 5, + "change": 0.5053763440860215 + }, + { + "filterName": "donorDisease", + "filterValue": "lupus erythematosus", + "count": 5, + "change": 0.12903225806451601 + }, + { + "filterName": "donorDisease", + "filterValue": "pancreatic neuroendocrine neoplasm", + "count": 5, + "change": null + }, + { + "filterName": "fileFormat", + "filterValue": "mtx.gz", + "count": 5, + "change": 1.258064516129032 + }, + { + "filterName": "fileFormat", + "filterValue": "xlsx", + "count": 5, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 3' transcription profiling", + "count": 5, + "change": 0.5053763440860215 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 5' transcription profiling", + "count": 5, + "change": 0.5053763440860215 + }, + { + "filterName": "modelOrgan", + "filterValue": "muscle", + "count": 5, + "change": 3.516129032258064 + }, + { + "filterName": "organPart", + "filterValue": "retina", + "count": 5, + "change": 1.258064516129032 + }, + { + "filterName": "selectedCellType", + "filterValue": "CD4+ T cell", + "count": 5, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "embryo", + "count": 5, + "change": 0.5053763440860215 + }, + { + "filterName": "bionetworkName", + "filterValue": "Genetic Diversity", + "count": 5, + "change": 3.516129032258064 + }, + { + "filterName": "developmentStage", + "filterValue": "post-embryonic stage", + "count": 5, + "change": 1.258064516129032 + }, + { + "filterName": "donorDisease", + "filterValue": "neuroblastoma", + "count": 5, + "change": 3.516129032258064 + }, + { + "filterName": "fileFormat", + "filterValue": "h5", + "count": 5, + "change": 1.258064516129032 + }, + { + "filterName": "organPart", + "filterValue": "Ventral midbrain", + "count": 5, + "change": 3.516129032258064 + }, + { + "filterName": "projectTitle", + "filterValue": "A single cell immune cell atlas of human hematopoietic system", + "count": 5, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Cells of the adult human heart", + "count": 5, + "change": 1.258064516129032 + }, + { + "filterName": "projectTitle", + "filterValue": "Cellular heterogeneity and dynamics of the human uterus in healthy premenopausal women", + "count": 5, + "change": 3.516129032258064 + }, + { + "filterName": "biologicalSex", + "filterValue": "male", + "count": 4, + "change": -0.5483870967741935 + }, + { + "filterName": "biologicalSex", + "filterValue": "mixed", + "count": 4, + "change": 0.8064516129032258 + }, + { + "filterName": "bionetworkName", + "filterValue": "Reproduction", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "developmentStage", + "filterValue": "10th week post-fertilization human stage", + "count": 4, + "change": -0.4838709677419355 + }, + { + "filterName": "developmentStage", + "filterValue": "11th week post-fertilization human stage", + "count": 4, + "change": -0.3978494623655914 + }, + { + "filterName": "developmentStage", + "filterValue": "19th week post-fertilization human stage", + "count": 4, + "change": -0.2774193548387096 + }, + { + "filterName": "donorDisease", + "filterValue": "Acute myeloblastic leukemia", + "count": 4, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "Parkinson disease", + "count": 4, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "brain cancer", + "count": 4, + "change": 0.20430107526881724 + }, + { + "filterName": "donorDisease", + "filterValue": "diabetes mellitus (disease)", + "count": 4, + "change": 0.8064516129032258 + }, + { + "filterName": "donorDisease", + "filterValue": "heart disease", + "count": 4, + "change": 0.8064516129032258 + }, + { + "filterName": "donorDisease", + "filterValue": "leukemia", + "count": 4, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "lung adenocarcinoma", + "count": 4, + "change": -0.2774193548387096 + }, + { + "filterName": "donorDisease", + "filterValue": "osteoarthritis", + "count": 4, + "change": 0.8064516129032258 + }, + { + "filterName": "donorDisease", + "filterValue": "rheumatoid arthritis", + "count": 4, + "change": -0.2774193548387096 + }, + { + "filterName": "donorDisease", + "filterValue": "ulcerative colitis", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X 5' v2 sequencing", + "count": 4, + "change": 0.8064516129032258 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 3' V3 sequencing", + "count": 4, + "change": 0.8064516129032258 + }, + { + "filterName": "modelOrgan", + "filterValue": "immune organ", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "modelOrgan", + "filterValue": "pancreas", + "count": 4, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "Hindbrain", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "organPart", + "filterValue": "body of pancreas", + "count": 4, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "breast", + "count": 4, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "ileum", + "count": 4, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "transverse colon", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "organPart", + "filterValue": "white adipose tissue", + "count": 4, + "change": 0.20430107526881724 + }, + { + "filterName": "specimenDisease", + "filterValue": "colorectal cancer", + "count": 4, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Pancreas", + "count": 4, + "change": -0.3978494623655914 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Small intestine", + "count": 4, + "change": 0.20430107526881724 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Stomach", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "specimenOrgan", + "filterValue": "bone tissue", + "count": 4, + "change": -0.3978494623655914 + }, + { + "filterName": "specimenOrgan", + "filterValue": "prostate gland", + "count": 4, + "change": -0.3978494623655914 + }, + { + "filterName": "specimenOrgan", + "filterValue": "trachea", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "workflow", + "filterValue": "raw_matrix_generation_PBMC", + "count": 4, + "change": 0.20430107526881724 + }, + { + "filterName": "accessible", + "filterValue": "false", + "count": 4, + "change": 0.8064516129032258 + }, + { + "filterName": "bionetworkName", + "filterValue": "null", + "count": 4, + "change": 0.20430107526881724 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 14", + "count": 4, + "change": 0.20430107526881724 + }, + { + "filterName": "donorDisease", + "filterValue": "Atopic dermatitis", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "donorDisease", + "filterValue": "Sepsis", + "count": 4, + "change": 0.20430107526881724 + }, + { + "filterName": "donorDisease", + "filterValue": "cancer", + "count": 4, + "change": -0.2774193548387096 + }, + { + "filterName": "donorDisease", + "filterValue": "clear cell renal carcinoma", + "count": 4, + "change": 0.20430107526881724 + }, + { + "filterName": "donorDisease", + "filterValue": "gastric cancer", + "count": 4, + "change": -0.4838709677419355 + }, + { + "filterName": "donorDisease", + "filterValue": "head and neck squamous cell carcinoma", + "count": 4, + "change": 0.8064516129032258 + }, + { + "filterName": "donorDisease", + "filterValue": "melanoma", + "count": 4, + "change": -0.2774193548387096 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "CITE 10x 3' v2", + "count": 4, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "CITE 10x 3' v3 TSA", + "count": 4, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "CITE 10x 5' v2", + "count": 4, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "Visium Spatial Gene Expression", + "count": 4, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "Subctx (forebrain)", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "projectTitle", + "filterValue": "A comprehensive single cell transcriptional landscape of human hematopoietic progenitors", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "projectTitle", + "filterValue": "A human breast atlas integrating single-cell proteomics and transcriptomics", + "count": 4, + "change": 0.8064516129032258 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell atlas of healthy human blood unveils age-related loss of NKG2C+GZMB-CD8+ memory T cells ", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "selectedCellType", + "filterValue": "macrophage", + "count": 4, + "change": -0.4838709677419355 + }, + { + "filterName": "selectedCellType", + "filterValue": "monocyte", + "count": 4, + "change": 0.20430107526881724 + }, + { + "filterName": "selectedCellType", + "filterValue": "natural killer cell", + "count": 4, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "Gingiva", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "specimenOrgan", + "filterValue": "sigmoid colon", + "count": 4, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin of prepuce of penis", + "count": 4, + "change": -0.09677419354838712 + }, + { + "filterName": "contentDescription", + "filterValue": "Count matrix", + "count": 4, + "change": -0.09677419354838712 + }, + { + "filterName": "contentDescription", + "filterValue": "Sample annotation", + "count": 4, + "change": 0.20430107526881724 + }, + { + "filterName": "dataUseRestriction", + "filterValue": "GRU", + "count": 4, + "change": null + }, + { + "filterName": "dataUseRestriction", + "filterValue": "GRU-NCU", + "count": 4, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x multiome GEX v1", + "count": 4, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "endothelial", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "selectedCellType", + "filterValue": "endothelial cell", + "count": 4, + "change": -0.3978494623655914 + }, + { + "filterName": "selectedCellType", + "filterValue": "hematopoietic stem cell", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "specimenOrgan", + "filterValue": "transverse colon", + "count": 4, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "allergic rhinitis", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "selectedCellType", + "filterValue": "hematopoietic oligopotent progenitor cell", + "count": 4, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "knee", + "count": 4, + "change": 2.6129032258064515 + }, + { + "filterName": "contentDescription", + "filterValue": "Feature table", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "developmentStage", + "filterValue": "14th week post-fertilization human stage", + "count": 3, + "change": -0.4580645161290322 + }, + { + "filterName": "developmentStage", + "filterValue": "2-5 year-old child stage", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "developmentStage", + "filterValue": "22nd week post-fertilization human stage", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 12", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 15", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 17", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 19", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 20", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "COVID-19", + "count": 3, + "change": -0.6129032258064516 + }, + { + "filterName": "donorDisease", + "filterValue": "cardiomyopathy", + "count": 3, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "dilated cardiomyopathy", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "glioblastoma", + "count": 3, + "change": -0.6989247311827957 + }, + { + "filterName": "donorDisease", + "filterValue": "glioblastoma (disease)", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "donorDisease", + "filterValue": "heart disorder", + "count": 3, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "liver cancer", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "donorDisease", + "filterValue": "melanoma (disease)", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "donorDisease", + "filterValue": "metastatic melanoma", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "donorDisease", + "filterValue": "pulmonary fibrosis", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "donorDisease", + "filterValue": "tongue cancer", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "donorDisease", + "filterValue": "ulcerative colitis (disease)", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "fileFormat", + "filterValue": "h5ad.gz", + "count": 3, + "change": -0.32258064516129037 + }, + { + "filterName": "fileFormat", + "filterValue": "tsv", + "count": 3, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X 3' v3 sequencing", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X 3\u2019 v3", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 3' v2 sequencing", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "Smart-seq2", + "count": 3, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "barcoded plate-based single cell RNA-seq", + "count": 3, + "change": null + }, + { + "filterName": "modelOrgan", + "filterValue": "skeletal muscle tissue", + "count": 3, + "change": null + }, + { + "filterName": "nucleicAcidSource", + "filterValue": "bulk cell", + "count": 3, + "change": -0.32258064516129037 + }, + { + "filterName": "organPart", + "filterValue": "Dorsal midbrain", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "organPart", + "filterValue": "Forebrain", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "organPart", + "filterValue": "Forebrain (cortex)", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "organPart", + "filterValue": "Forebrain (one hemisphere)", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "organPart", + "filterValue": "Hippocamp (wrong: likely ventral forebrain)", + "count": 3, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "Midbrain", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "organPart", + "filterValue": "brain", + "count": 3, + "change": -0.32258064516129037 + }, + { + "filterName": "organPart", + "filterValue": "cortex", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "organPart", + "filterValue": "head of pancreas", + "count": 3, + "change": -0.4580645161290322 + }, + { + "filterName": "organPart", + "filterValue": "hindbrain", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "organPart", + "filterValue": "kidney", + "count": 3, + "change": -0.7536656891495601 + }, + { + "filterName": "organPart", + "filterValue": "lung parenchyma", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "midbrain", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "organPart", + "filterValue": "midbrain tegmentum", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "organPart", + "filterValue": "pancreatic duct", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "subcutaneous abdominal adipose tissue", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "A human cell atlas of fetal gene expression.", + "count": 3, + "change": -0.9032258064516129 + }, + { + "filterName": "projectTitle", + "filterValue": "A molecular cell atlas of the human lung from single-cell RNA sequencing", + "count": 3, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell Transcriptome Atlas of Testis Aging", + "count": 3, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "Cardiac myocyte", + "count": 3, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "alveolar type 2 fibroblast cell", + "count": 3, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "astrocytes", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "selectedCellType", + "filterValue": "cardiac muscle cell", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "selectedCellType", + "filterValue": "muscle cell", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "selectedCellType", + "filterValue": "myofibroblast cell", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "specimenDisease", + "filterValue": "Atopic dermatitis", + "count": 3, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "Sepsis", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "specimenDisease", + "filterValue": "non-alcoholic fatty liver disease", + "count": 3, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "type 2 diabetes mellitus", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Adrenal gland", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Oral cavity", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "abdomen", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "specimenOrgan", + "filterValue": "adrenal gland", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "specimenOrgan", + "filterValue": "digestive system", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "specimenOrgan", + "filterValue": "esophagus", + "count": 3, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "spleen", + "count": 3, + "change": -0.32258064516129037 + }, + { + "filterName": "specimenOrgan", + "filterValue": "tonsil", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "specimenOrgan", + "filterValue": "umbilical cord", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "umbilical cord blood", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "workflow", + "filterValue": "Spatial_transcriptomic_analysis", + "count": 3, + "change": -0.32258064516129037 + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_scRNA-Seq", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "contentDescription", + "filterValue": "Count Matrix", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "dataUseRestriction", + "filterValue": "NRES", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "prenatal stage", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "donorDisease", + "filterValue": "Heart block", + "count": 3, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "congenital heart disease", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "donorDisease", + "filterValue": "dermatitis, atopic", + "count": 3, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "inflammatory bowel disease", + "count": 3, + "change": -0.5483870967741935 + }, + { + "filterName": "donorDisease", + "filterValue": "kidney cancer", + "count": 3, + "change": -0.4580645161290322 + }, + { + "filterName": "donorDisease", + "filterValue": "non-alcoholic fatty liver disease", + "count": 3, + "change": -0.32258064516129037 + }, + { + "filterName": "fileFormat", + "filterValue": "csv", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "fileFormat", + "filterValue": "fastq", + "count": 3, + "change": -0.09677419354838712 + }, + { + "filterName": "fileFormat", + "filterValue": "mtx", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "CITE-seq (sample multiplexing)", + "count": 3, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "colonic mucosa", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "organPart", + "filterValue": "hypothalamus", + "count": 3, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "peripheral blood mononuclear cell", + "count": 3, + "change": -0.4580645161290322 + }, + { + "filterName": "organPart", + "filterValue": "spleen", + "count": 3, + "change": -0.32258064516129037 + }, + { + "filterName": "pairedEnd", + "filterValue": "true", + "count": 3, + "change": -0.32258064516129037 + }, + { + "filterName": "projectTitle", + "filterValue": "A single\u2010cell RNA expression atlas of normal, preneoplastic and tumorigenic states in the human brea", + "count": 3, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Cellular atlas of the human ovary using morphologically guided spatial transcriptomics and single-ce", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell RNA-seq to decipher the subpopulations of human decidual leukocytes in normal and RSA pr", + "count": 3, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Spatially organized multicellular immune hubs in human colorectal cancer", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "sampleEntityType", + "filterValue": "organoids", + "count": 3, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "dendritic cell", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "selectedCellType", + "filterValue": "embryonic fibroblast", + "count": 3, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "endothelial cell of artery", + "count": 3, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "intestinal enteroendocrine cell", + "count": 3, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "null", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "selectedCellType", + "filterValue": "pancreatic stellate cell", + "count": 3, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "psoriasis", + "count": 3, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "Colon", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Mouth", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "specimenOrgan", + "filterValue": "ascending colon", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "specimenOrgan", + "filterValue": "mouse kidney", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "specimenOrgan", + "filterValue": "mouth", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "specimenOrgan", + "filterValue": "saliva-secreting gland", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "contactName", + "filterValue": "Guoji,,Guo", + "count": 3, + "change": null + }, + { + "filterName": "contentDescription", + "filterValue": "count matrix", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "organPart", + "filterValue": "ilset of langerhans", + "count": 3, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "peritoneum", + "count": 3, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Asian Immune Diversity Atlas (AIDA): Asian diversity in human immune cells (Thailand cells)", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "projectTitle", + "filterValue": "Asian Immune Diversity Atlas (AIDA): Single-cell analysis of human diversity in circulating immune c", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell transcriptomic analyses provide insights into the developmental origins of neuroblastoma", + "count": 3, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "cell of skeletal muscle", + "count": 3, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "kidney epithelial cell", + "count": 3, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "oligodendrocyte", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "selectedCellType", + "filterValue": "oligodendrocyte precursor cell", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "selectedCellType", + "filterValue": "pancreatic A cell", + "count": 3, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "pancreatic D cell", + "count": 3, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "pancreatic PP cell", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "selectedCellType", + "filterValue": "pancreatic ductal cell", + "count": 3, + "change": 0.35483870967741926 + }, + { + "filterName": "selectedCellType", + "filterValue": "type B pancreatic cell", + "count": 3, + "change": 1.7096774193548385 + }, + { + "filterName": "contentDescription", + "filterValue": "Cell type identifier", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "contentDescription", + "filterValue": "Gene expression matrix", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "contentDescription", + "filterValue": "clinical data", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "developmentStage", + "filterValue": "1-month-old human stage", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "developmentStage", + "filterValue": "10-month-old human stage", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "developmentStage", + "filterValue": "2-year-old human stage", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "developmentStage", + "filterValue": "20th week post-fertilization human stage", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "developmentStage", + "filterValue": "3-month-old human stage", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "developmentStage", + "filterValue": "30-year-old stage", + "count": 2, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "6-12 year-old child stage", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "developmentStage", + "filterValue": "9th week post-fertilization human stage", + "count": 2, + "change": -0.7419354838709677 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 11", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 18", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 21", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "juvenile stage", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "newborn stage (0-28 days)", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "developmentStage", + "filterValue": "post-juvenile adult stage", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "Apical hypertrophic cardiomyopathy", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "Crohn disease", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "donorDisease", + "filterValue": "Crohn's colitis", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "donorDisease", + "filterValue": "Diabetes", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "atherosclerosis", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "cardiovascular disease", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "donorDisease", + "filterValue": "cervical cancer", + "count": 2, + "change": -0.7419354838709677 + }, + { + "filterName": "donorDisease", + "filterValue": "chronic kidney disease", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "donorDisease", + "filterValue": "colitis", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "colitis (disease)", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "donorDisease", + "filterValue": "coronary artery disorder", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "diabetes", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "fibrotic liver disease", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "heart aneurysm", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "heart valve disorder", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "hepatocellular carcinoma", + "count": 2, + "change": -0.5483870967741935 + }, + { + "filterName": "donorDisease", + "filterValue": "hypoplastic left heart syndrome", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "interstitial lung disease", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "donorDisease", + "filterValue": "lower gum cancer", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "pancreatic adenosquamous carcinoma", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "pancreatic intraductal papillary-mucinous neoplasm", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "skin cancer", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "donorDisease", + "filterValue": "triple-negative breast carcinoma", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "type 1 diabetes mellitus", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "fileFormat", + "filterValue": "loom.gz", + "count": 2, + "change": null + }, + { + "filterName": "fileFormat", + "filterValue": "rds", + "count": 2, + "change": null + }, + { + "filterName": "fileFormat", + "filterValue": "tsv.gz", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "fileFormat", + "filterValue": "txt", + "count": 2, + "change": null + }, + { + "filterName": "fileSource", + "filterValue": "GEO", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X Feature Barcoding technology for cell surface proteins", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X Gene Expression Library", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X v2 sequencing", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 3' V3", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 3' technology", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x feature barcode (cell surface protein profiling)", + "count": 2, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x gene expression library", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x immune profiling", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x v2 3'", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x v2 sequencing", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x v3 sequencing", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "Visium Spatial Gene Expression V1", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "modelOrgan", + "filterValue": "eye", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "modelOrgan", + "filterValue": "hematopoietic system", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "modelOrgan", + "filterValue": "skin of body", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "nucleicAcidSource", + "filterValue": "single nucleus", + "count": 2, + "change": -0.6387096774193548 + }, + { + "filterName": "organPart", + "filterValue": "Ascending colon", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "Descending colon", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "Endometrium", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "Sigmoid colon", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "Subcutaneous adipose tissue", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "Transverse colon", + "count": 2, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "alveolus of lung", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "organPart", + "filterValue": "apex of heart", + "count": 2, + "change": -0.5483870967741935 + }, + { + "filterName": "organPart", + "filterValue": "cerebellar cortex", + "count": 2, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "cerebellum", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "cervical lymph node", + "count": 2, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "colonic epithelium", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "dorsal root ganglion", + "count": 2, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "duodenum", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "endometrium", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "fibroblast", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "granular layer of cerebellar cortex", + "count": 2, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "heart atrium", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "hepatic flexure of colon", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "lamina propria of mucosa of colon", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "large intestine", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "lung", + "count": 2, + "change": -0.7992831541218638 + }, + { + "filterName": "organPart", + "filterValue": "mucosa of large intestine", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "myenteric nerve plexus of colon", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "nasal cavity", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "nasal cavity epithelium", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "panniculus adiposus", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "placenta", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "proximal-distal subdivision of colon", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "skin epidermis", + "count": 2, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "skin of body", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "splenic flexure of colon", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "stomach", + "count": 2, + "change": -0.5483870967741935 + }, + { + "filterName": "organPart", + "filterValue": "subcutaneous adipose tissue", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "organPart", + "filterValue": "tail of pancreas", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "organPart", + "filterValue": "thymus", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "venous blood", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "projectTitle", + "filterValue": "1.3 Million Brain Cells from E18 Mice", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A Cellular Anatomy of the Normal Adult Human Prostate and Prostatic Urethra", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "projectTitle", + "filterValue": "A Single-Cell Atlas of the Human Healthy Airways", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A Single-Cell Transcriptome Atlas of the Human Pancreas.", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "projectTitle", + "filterValue": "A blood atlas of COVID-19 defines hallmarks of disease severity and specificity", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A cell atlas of human thymic development defines T cell repertoire formation", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "A cellular census of human lungs identifies novel cell states in health and in asthma", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "A single-cell atlas of human and mouse white adipose tissue", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A spatially resolved single-cell genomic atlas of the adult human breast", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "projectTitle", + "filterValue": "AIDA", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "projectTitle", + "filterValue": "Defining Transcriptional Signatures of Human Hair Follicle Cell States", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Harnessing Expressed Single Nucleotide Variation and Single Cell RNA Sequencing To Define Immune Cel", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Lineage-dependent gene expression programs influence the immune landscape of colorectal cancer.", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "projectTitle", + "filterValue": "Mucosal Profiling of Pediatric-Onset Colitis and IBD Reveals Common Pathogenics and Therapeutic Path", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Multimodal mapping of the tumor and peripheral blood immune landscape in human pancreatic cancer", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-Cell RNA Sequencing Maps Endothelial Metabolic Plasticity in Pathological Angiogenesis.", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell RNA sequencing of peripheral blood reveals immune cell signatures in Alzheimer's disease", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell RNA-seq of human peripheral blood NKT cells", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell RNA-seq reveals cell type-specific molecular and genetic associations to lupus", + "count": 2, + "change": -0.5483870967741935 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell RNA-sequencing of skin, fresh blood, and cultured peripheral blood mononuclear cells fro", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "scRNA-Seq Reveals New Enteric Nervous System Roles for GDNF, NRTN, and TBX3", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "scRNA-seq assessment of the human lung, spleen, and esophagus tissue stability after cold preservati", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "CD4-positive helper T cell", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "selectedCellType", + "filterValue": "alpha-beta T cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "basal cell of epithelium of respiratory bronchiole", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "blood cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "bone marrow hematopoietic cell", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "selectedCellType", + "filterValue": "cardiac endothelial cell", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "selectedCellType", + "filterValue": "connective tissue cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "erythroid lineage cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "fibroblast of breast", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "fibroblast of cardiac tissue", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "granulocyte", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "hepatic stellate cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "hepatocyte", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "immature natural killer cell", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "selectedCellType", + "filterValue": "microglial cell", + "count": 2, + "change": -0.5483870967741935 + }, + { + "filterName": "selectedCellType", + "filterValue": "neutrophil", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "smooth muscle cell", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "stromal cell", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenDisease", + "filterValue": "Alzheimer disease", + "count": 2, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "GATA2 deficiency with susceptibility to MDS/AML", + "count": 2, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "asthma", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenDisease", + "filterValue": "breast cancer", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenDisease", + "filterValue": "cervical cancer", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenDisease", + "filterValue": "invasive breast carcinoma", + "count": 2, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "lung adenocarcinoma", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenDisease", + "filterValue": "pancreatic ductal adenocarcinoma", + "count": 2, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "rheumatoid arthritis", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Breast", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Duodenum", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Embryo", + "count": 2, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Immune system", + "count": 2, + "change": -0.7741935483870968 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Larynx", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Skin of scalp", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Skin of trunk", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Tongue", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Uterus", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "arterial blood vessel", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "bladder organ", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "specimenOrgan", + "filterValue": "blood vessel", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "specimenOrgan", + "filterValue": "cerebellum", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "endometrium", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "ileum", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "specimenOrgan", + "filterValue": "immune organ", + "count": 2, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "nervous system", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "nose", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skeletal element", + "count": 2, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin epidermis", + "count": 2, + "change": -0.7419354838709677 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin of abdomen", + "count": 2, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin of back", + "count": 2, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "thyroid gland", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "ureter", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "vagina", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "vasculature", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "venous blood", + "count": 2, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "zone of skin", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "workflow", + "filterValue": "ATAC_peaks", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "workflow", + "filterValue": "CITE_matrix_generation", + "count": 2, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_cell_types", + "count": 2, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_scRNA-seq_DMFB_iPSC", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "contactName", + "filterValue": "Gary Bader", + "count": 2, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Gary D,,Bader", + "count": 2, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Gary,D,Bader", + "count": 2, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Hamish,W,King", + "count": 2, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Roser,,Vento-Tormo", + "count": 2, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Roser,Vento-Tormo", + "count": 2, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic day 15.5", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "colon carcinoma", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "endometriosis", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "lymphangioleiomyomatosis", + "count": 2, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "oral cavity squamous cell carcinoma", + "count": 2, + "change": -0.5483870967741935 + }, + { + "filterName": "fileFormat", + "filterValue": "bam", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "fileSource", + "filterValue": "null", + "count": 2, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Center for Vascular Research, Institute for Basic Science (IBS), Daejeon, Korea, Republic of.", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "organPart", + "filterValue": "caudate lobe of liver", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "cerebral cortex", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "dorsal lateral geniculate nucleus", + "count": 2, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "left lobe of liver", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "organPart", + "filterValue": "liver parenchyma", + "count": 2, + "change": -0.5483870967741935 + }, + { + "filterName": "organPart", + "filterValue": "lymph node", + "count": 2, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "nasal cavity mucosa", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "organPart", + "filterValue": "peritoneal fluid", + "count": 2, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "right lobe of liver", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "organPart", + "filterValue": "spinal cord", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A proximal-to-distal survey of healthy adult\u00a0human\u00a0small intestine and colon epithelium by single-ce", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Allergic inflammatory memory in human respiratory epithelial progenitor cells", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Construction of a single-cell transcriptomic atlas of 58,243 liver cells from 4 donors and 4 recipie", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Differentiation of Human Intestinal Organoids with Endogenous Vascular Endothelial Cells", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Molecular and functional heterogeneity of IL-10-producing CD4+ T cells.", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Molecular transitions in early progenitors during human cord blood hematopoiesis", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Multimodal single cell sequencing of human diabetic kidney disease implicates chromatin accessibilit", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Profiling of CD34+ cells from human bone marrow to understand hematopoiesis", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell reconstruction of follicular remodeling in the human adult ovary", + "count": 2, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell transcriptional profiles in human and mouse skeletal muscle", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "projectTitle", + "filterValue": "The immune cell atlas of human neuroblastoma", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "projectTitle", + "filterValue": "The regulatory landscapes of human ovarian ageing", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "CD141-positive myeloid dendritic cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "CD8-positive, alpha-beta T cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "DN1 thymic pro-T cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "DN3 thymocyte", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "DN4 thymocyte", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "acinar cell", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "selectedCellType", + "filterValue": "basophil", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "bronchioalveolar stem cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "ciliated cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "ciliated epithelial cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "classical monocyte", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "club cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "corneal epithelial cell", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "selectedCellType", + "filterValue": "double-positive, alpha-beta thymocyte", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "duct epithelial cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "duodenum glandular cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "effector CD4-positive, alpha-beta T cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "effector CD8-positive, alpha-beta T cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "epithelial cell of pancreas", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "exocrine cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "hematopoietic cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "innate lymphoid cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "insulin secreting cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "kidney cell", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "selectedCellType", + "filterValue": "mast cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "mesenchymal stem cell", + "count": 2, + "change": -0.3978494623655914 + }, + { + "filterName": "selectedCellType", + "filterValue": "pancreatic acinar cell", + "count": 2, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "pancreatic epsilon cell", + "count": 2, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "clear cell renal carcinoma", + "count": 2, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "descending colon", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "specimenOrgan", + "filterValue": "muscle tissue", + "count": 2, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "parotid gland", + "count": 2, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "ATAC_matrix", + "count": 2, + "change": -0.6387096774193548 + }, + { + "filterName": "workflow", + "filterValue": "ATAC_tracks", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "biologicalSex", + "filterValue": "unknown", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "contactName", + "filterValue": "Alan,C,Mullen", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Aparna,,Bhaduri", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "C,,Dom\u00ednguez Conde", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Caitriona M,,McEvoy", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Cecilia Dominguez-Conde", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Cecilia,,Dominguez-Conde", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Cecilia,Dominguez,Conde", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Dominic,,Gr\u00fcn", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Emelie,,Braun", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Gary,,Reynolds", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "contactName", + "filterValue": "Gary,Reynolds", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Gregory Hageman", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Hamish W,,King", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Ida,,Zucchi", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Ido Amit", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Jinling,,Liao", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Julia Braune", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Kimberly A,,Aldinger", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Kimberly,A,Aldinger", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "NHLBI LungMap Consortium,,", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "contactName", + "filterValue": "Nicholas,,Borcherding", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Nir,,Hacohen", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Pascal,,Barbry", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Pascal,Barbry", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Richard Perez", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Thomas,,Braun", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Xiaowei,,Xie", + "count": 1, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Zheng,,Zhang", + "count": 1, + "change": null + }, + { + "filterName": "contentDescription", + "filterValue": "Annotated text", + "count": 1, + "change": null + }, + { + "filterName": "contentDescription", + "filterValue": "Annotation track", + "count": 1, + "change": null + }, + { + "filterName": "contentDescription", + "filterValue": "Cell type name", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "contentDescription", + "filterValue": "DNA sequence", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "contentDescription", + "filterValue": "Gene Expression matrix", + "count": 1, + "change": null + }, + { + "filterName": "contentDescription", + "filterValue": "Gene name", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "contentDescription", + "filterValue": "Image", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "contentDescription", + "filterValue": "Inferred cell type", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "contentDescription", + "filterValue": "Matrix", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "contentDescription", + "filterValue": "RNA sequence", + "count": 1, + "change": null + }, + { + "filterName": "contentDescription", + "filterValue": "inferred cell type", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "10-month-old stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "11th week post-fertilization stage", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "developmentStage", + "filterValue": "13th week post-fertilization stage", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "developmentStage", + "filterValue": "14-month-old human stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "14-month-old stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "14th week post-fertilization stage", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "developmentStage", + "filterValue": "15-19 year-old", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "16th week post-fertilization stage", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "developmentStage", + "filterValue": "17th week post-fertilization stage", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "developmentStage", + "filterValue": "18th week post-fertilization stage", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "developmentStage", + "filterValue": "19th week post-fertilization stage", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "developmentStage", + "filterValue": "20th week post-fertilization stage", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "developmentStage", + "filterValue": "21st week post-fertilization human stage", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "developmentStage", + "filterValue": "21st week post-fertilization stage", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "developmentStage", + "filterValue": "23rd week post-fertilization human stage", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "developmentStage", + "filterValue": "24-year-old stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "25-year-old stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "26th week post-fertilization human stage", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "developmentStage", + "filterValue": "27-year-old stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "28-year-old stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "30-year-old human stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "31-year-old stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "33-year-old stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "34-year-old stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "40-year-old stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "5-month-old human stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "5-month-old stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "5-year-old human stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "6-12 year old child stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "6-month-old human stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "6-month-old stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "6-year-old human stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "68-year-old stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "71-year-old stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "9-month-old human stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "9th week post-fertilization stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 10", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "Carnegie stage 13", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "Theiler stage 17", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "Theiler stage 21", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "Theiler stage 28", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "child stage (1-4 yo)", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic day 12", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic day 12.5", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic day 9.5", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic stage", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "developmentStage", + "filterValue": "fifth decade human stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "human embryonic stage", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "developmentStage", + "filterValue": "human life cycle", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "human middle aged stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "immature stage", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "developmentStage", + "filterValue": "infant", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "juvenile days 45-89", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "juvenile stage (5-14 yo)", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "mature stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "mouse postnatal", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "neonate", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "postpartum", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "third decade human stage", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "under-1-year-old human stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "young adult stage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "Abnormal pulmonary vein morphology", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "Barrett esophagus", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "Crohn's disease", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "HIV infectious disease", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "Hypertension", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "IgA glomerulonephritis", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "Obesity", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "donorDisease", + "filterValue": "Wilms tumor", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "acute myocardial infarction", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "donorDisease", + "filterValue": "adenomyosis", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "atopic eczema", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "bacterial infectious disease with sepsis", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "brain glioblastoma", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "breast adenocarcinoma", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "carcinoma of floor of mouth", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "cardia cancer", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "cardiac arrest", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "cardiac rhythm disease", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "cardiac tamponade", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "chronic hepatitis B virus infection", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "congestive heart disorder", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "cutaneous squamous cell carcinoma", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "diffuse cutaneous systemic sclerosis", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "discoid lupus erythematosus", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "endometrial cancer", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "epilepsy", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "erectile dysfunction", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "esophageal cancer", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "essential hypertension", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "estrogen-receptor positive breast cancer", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "gestational diabetes", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "hormone receptor-positive breast cancer", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "hypertension", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "hypertensive disorder", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "idiopathic pulmonary fibrosis", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "donorDisease", + "filterValue": "inclusion body myositis", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "influenza", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "insulin dependent diabetes mellitus", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "interstitial lung disease 2", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "invasive ductal breast carcinoma", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "irritable bowel syndrome", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "kidney disease", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "laryngeal carcinoma", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "laryngeal squamous cell carcinoma", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "liver transplant recipient", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "lung disease", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "lymphoma", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "mandibular cancer", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "donorDisease", + "filterValue": "meningeal sarcoma", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "morbid obesity", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "multiple sclerosis", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "donorDisease", + "filterValue": "myocardial infarction", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "donorDisease", + "filterValue": "non-alcoholic steatohepatitis", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "donorDisease", + "filterValue": "non-small cell lung carcinoma", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "obesity disorder", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "obstructive sleep apnea syndrome", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "oral cavity carcinoma", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "oropharynx squamous cell carcinoma", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "pelvic organ prolapse", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "polyposis", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "preeclampsia", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "primary cutaneous T-cell lymphoma", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "pulmonary arterial hypertension", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "pulmonary emphysema", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "pulmonary hypertension", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "pulmonary systemic sclerosis", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "rectal cancer", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "remote breast cancer", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "renal fibrosis", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "retinoblastoma", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "squamous cell carcinoma", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "squamous cell carcinoma of buccal mucosa", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "squamous cell lung carcinoma", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "subacute cutaneous lupus erythematosus", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "donorDisease", + "filterValue": "tongue squamous cell carcinoma", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "donorDisease", + "filterValue": "tonsil carcinoma", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "uterine cancer", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "fileFormat", + "filterValue": ".rds", + "count": 1, + "change": null + }, + { + "filterName": "fileFormat", + "filterValue": ".xlsx", + "count": 1, + "change": null + }, + { + "filterName": "fileFormat", + "filterValue": "RDS", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "fileFormat", + "filterValue": "Rds", + "count": 1, + "change": null + }, + { + "filterName": "fileFormat", + "filterValue": "csv.gz", + "count": 1, + "change": null + }, + { + "filterName": "fileFormat", + "filterValue": "pdf", + "count": 1, + "change": null + }, + { + "filterName": "fileFormat", + "filterValue": "rds.gz", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "fileFormat", + "filterValue": "tar", + "count": 1, + "change": null + }, + { + "filterName": "fileFormat", + "filterValue": "tif", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "fileFormat", + "filterValue": "txt.gz", + "count": 1, + "change": null + }, + { + "filterName": "fileSource", + "filterValue": "ArrayExpress", + "count": 1, + "change": null + }, + { + "filterName": "fileSource", + "filterValue": "Contributor", + "count": 1, + "change": null + }, + { + "filterName": "fileSource", + "filterValue": "DCP/2 Analysis", + "count": 1, + "change": null + }, + { + "filterName": "fileSource", + "filterValue": "DCP/2 Ingest", + "count": 1, + "change": null + }, + { + "filterName": "fileSource", + "filterValue": "HCA Release", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "fileSource", + "filterValue": "Publication", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "genusSpecies", + "filterValue": "canis lupus familiaris", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Deparment for Liver Transplantation, Shenzhen Third People's Hospital", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Department of Anatomy and Developmental Biology, Monash University, Clayton, Victoria, Australia.", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Department of Hepatobiliary and Pancreatic Surgery, The First Affiliated Hospital, Zhejiang Universi", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "EMBL-EBI", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Heart Center; Turku University Hospital", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Human Cell Atas", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Human Cell Atlas Data Coordination Platform", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Human Developmental Biology Resource, Institute of Genetic Medicine, Newcastle University, Newcastle", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Institute of Medical Biostatistics, Epidemiology and Informatics (IMBEI); University Medical Center ", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Istituto di Bioimmagini e Sistemi Biologici Complessi (IBSBC) \u2013 CNR, Milano", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "institution", + "filterValue": "Lineberger Comprehensive Cancer Center, University of North Carolina at Chapel Hill, Chapel Hill, NC", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "National Center for Liver Cancer", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Neutrophil Monitoring Laboratory, Leidos Biomedical Research, Frederick National Laboratory for Canc", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Program in Cellular Neuroscience, Neurodegeneration and Repair, Department of Neurology, Yale School", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Research Center for Liver Transplantation, Fifth Medical Center for General Hospital of PLA", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "University of Michigan Medical School", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "University of Rochester Medical Center", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "Waisman Center, School of Medicine and Public Health, University of Wisconsin-Madison, Madison, WI 5", + "count": 1, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X 3' V2 sequencing", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X Ig enrichment", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 3' V2 sequencing", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x Ig enrichment", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x TCR enrichment", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x feature barcode (sample multiplexing)", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x sequencing", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x technology", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x trancription profiling", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "Abseq", + "count": 1, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "BCR 10x 5' v2", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "Drop-seq", + "count": 1, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "ECCITE-seq", + "count": 1, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "SCOPE-chip", + "count": 1, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "Slide-seq2", + "count": 1, + "change": null + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "cDNA library construction", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "modelOrgan", + "filterValue": "abdomen", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "modelOrgan", + "filterValue": "breast", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "modelOrgan", + "filterValue": "embryo", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "modelOrgan", + "filterValue": "nose", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "modelOrgan", + "filterValue": "respiratory airway", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "modelOrgan", + "filterValue": "small intestine", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "modelOrgan", + "filterValue": "trophoblast", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "nucleicAcidSource", + "filterValue": "bulk nuclei", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "Cerebellum", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "Cortex", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "Cortex (second half)", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "Inguinal lymph node", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "Middle part of ileum", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "Proximal deep inguinal lymph node", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "Purkinje cell layer of cerebellar cortex", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "Supraclavicular lymph node", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "adipose tissue of abdominal region", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "organPart", + "filterValue": "aorta", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "ascending aorta", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "axillary lymph node", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "blood vessel", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "body of stomach", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "organPart", + "filterValue": "breast epithelium", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "caecum", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "capsule of liver", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "organPart", + "filterValue": "carotid artery segment", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "cerebellar hemisphere", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "cervical spinal cord", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "cervical spinal cord white matter", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "cortex of cerebral lobe", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "craniocervical lymph node", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "eye trabecular meshwork", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "gingiva", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "hindlimb muscle", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "ileal mucosa", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "inguinal lymph node", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "interventricular septum", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "islet of Langerhans", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "organPart", + "filterValue": "layer of synovial tissue", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "left cardiac atrium", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "organPart", + "filterValue": "left eye", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "lower lobe of left lung", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "organPart", + "filterValue": "lumbar spinal cord", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "lung epithelium", + "count": 1, + "change": -0.8193548387096774 + }, + { + "filterName": "organPart", + "filterValue": "lymphoid tissue", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "mediastinal lymph node", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "mesenteric lymph node", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "middle lobe of right lung", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "organPart", + "filterValue": "minor salivary gland", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "mucosa of nasopharynx", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "mucosa of stomach", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "nasopharynx", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "neocortex", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "olfactory bulb", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "optic disc", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "ovary", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "perifoveal part of retina", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "periodontium", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "peripheral zone of prostate", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "pharynx", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "right cardiac atrium", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "right eye", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "skin of forearm", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "skin of leg", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "temporal cortex", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "thoracic lymph node", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "thoracic spinal cord", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "tonsil", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "tracheobronchial lymph node", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "transition zone of prostate", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "organPart", + "filterValue": "umbilical cord blood", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "organPart", + "filterValue": "uterus", + "count": 1, + "change": null + }, + { + "filterName": "organPart", + "filterValue": "white matter of cerebellum", + "count": 1, + "change": null + }, + { + "filterName": "pairedEnd", + "filterValue": "false", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A Human Liver Cell Atlas reveals Heterogeneity and Epithelial Progenitors", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "projectTitle", + "filterValue": "A Single-Cell Atlas Of Human Pediatric Liver Reveals Age-Related Hepatic Gene Signatures", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A Single-Cell Transcriptomic Atlas of Human Skin Aging.", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "A Single-Cell Transcriptomic Map of the Human and Mouse Pancreas Reveals Inter- and Intra-cell Popul", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A cell and transcriptome atlas of human arterial vasculature", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "A human fetal lung cell atlas uncovers proximal-distal gradients of differentiation and key regulato", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "A multi-omics atlas of the human retina at single-cell resolution", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A single cell atlas of the human liver tumor microenvironment", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "A single-cell atlas of breast cancer cell lines to study tumour heterogeneity and drug response", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A single-cell atlas of entorhinal cortex from individuals with Alzheimer's disease reveals cell-type", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A single-cell atlas of the healthy breast tissues reveals clinically relevant clusters of breast epi", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A single-cell survey of the human first-trimester placenta and decidua", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "A single-cell transcriptome atlas of human early embryogenesis", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Activation of CD8+ T Cells in Chronic Obstructive Pulmonary Disease Lung", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "An integrated single cell and spatial transcriptomic map of human white adipose tissue", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "projectTitle", + "filterValue": "An integrated single-cell reference atlas of the human endometrium", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "An organoid and multi-organ developmental cell atlas reveals multilineage fate specification in the ", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "B cell signatures and tertiary lymphoid structures contribute to outcome in head and neck squamous c", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Benchmarking Single-Cell RNA Sequencing Protocols for Cell Atlas Projects", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Cells of the human intestinal tract mapped across space and time", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Cellular and molecular landscapes of human tendons across the lifespan revealed by spatial and singl", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Co-evolution of tumor and immune cells during progression of multiple myeloma.", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Construction of A Human Cell Landscape by Single-cell mRNA-seq", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Cross-tissue immune cell analysis reveals tissue-specific features in humans", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Defining cardiac functional recovery in end-stage heart failure at single-cell resolution.", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Developmental cell programs are co-opted in inflammatory skin disease.", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Differential dynamics of response at single cell resolution following CAR-T therapy in refractory B-", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Differential pre-malignant programs and microenvironment chart distinct paths to malignancy in human", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Dissecting the Global Dynamic Molecular Profiles of Human Fetal Kidney Development by Single-Cell RN", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Dissecting transcriptional and chromatin accessibility heterogeneity of proliferating cone precursor", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Dysregulated lung stroma drives emphysema exacerbation by potentiating resident lymphocytes to suppr", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Genome-Wide DNA Hypermethylation in the Wound-Edge of Chronic Wound Patients Opposes Closure by Impa", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Immune cell profiling of preeclamptic pregnant and postpartum women by single-cell RNA sequencing", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Integrated single cell analysis of blood and cerebrospinal fluid leukocytes in multiple sclerosis.", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Integrative single-cell analysis of transcriptional and epigenetic states in the human adult brain.", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Intra- and Inter-cellular Rewiring of the Human Colon during Ulcerative Colitis.", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Mapping Development of the Human Intestinal Niche at Single-Cell Resolution", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Mapping hormone-regulated cell-cell interaction networks in the human breast at single-cell resoluti", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Mapping human haematopoietic stem cells from haemogenic endothelium to birth.", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Memory-like natural killer cells facilitate effector functions of daratumumab in multiple myeloma", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Microglia Require CD4\u00a0T Cells to Complete the Fetal-to-Adult Transition.", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Molecular phenotyping reveals the identity of Barrett\u2019s esophagus and its malignant transition", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Organization of the human intestine at single-cell resolution", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Population-scale single-cell RNA-seq profiling across dopaminergic neuron differentiation.", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Preneoplastic stromal cells promote BRCA1-mediated breast tumorigenesis", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "projectTitle", + "filterValue": "Pro-inflammatory T helper 17 directly harms oligodendrocytes in neuroinflammation", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Refining Colorectal Cancer Classification and Clinical Stratification Through a Single-Cell Atlas", + "count": 1, + "change": -0.7741935483870968 + }, + { + "filterName": "projectTitle", + "filterValue": "Resolving the fibrotic niche of human liver cirrhosis using single-cell transcriptomics", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Resolving the intertwining of inflammation and fibrosis in human heart failure at single-cell level", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Retinal ganglion cell-specific genetic regulation in primary open angle glaucoma", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single Cell RNA-Sequencing of Human Limb Skeletal Muscle across Development and Myogenic Culture fro", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single Cell, Single Nucleus and Spatial RNA Sequencing of the Human Liver Identifies Hepatic Stellat", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single cell RNA sequencing of multiple myeloma II", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single cell RNA-sequencing on healthy and IPF lung mesenchymal cells.", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single cell analysis of endometriosis reveals a coordinated transcriptional program driving immunoto", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single cell and lineage tracing studies reveal the impact of CD34+ cells on myocardial fibrosis duri", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single cell landscape of mesenchymal and endothelial cells in healthy human liver", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single cell sequencing identifies novel sub-populations of breast cancer cells selected under hypoxi", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single cell transcriptomic analysis of the immune cell compartment in the human small intestine and ", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-Cell Map of Diverse Immune Phenotypes in the Breast Tumor Microenvironment.", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell ATAC sequencing reveals the mechanism of human breast cancer metastasis", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell RNA sequencing reveals profibrotic roles of distinct epithelial and mesenchymal lineages", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell RNA-seq analysis throughout a 125-day differentiation protocol that converted H1 human ", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell RNA-seq of bone marrow cells from aplastic anemia patient and healthy donor", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell analysis of gastric pre-cancerous and cancer lesions reveals cell lineage diversity and ", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell analysis of human non-small cell lung cancer lesions refines tumor classification and pa", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell genomic profiling of human dopamine neurons identifies a population that selectively deg", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell multiome of the human retina and deep learning nominate causal variants in complex eye d", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell multiomics of the human retina reveals hierarchical transcription factor collaboration i", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell sequencing of human midbrain reveals glial activation and a Parkinson-specific neuronal ", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell transcriptome profiling of the vaginal wall in women with severe anterior vaginal prolap", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell transcriptomes identify human islet cell signatures and reveal cell-type\u2013specific expres", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell transcriptomics reveals cell-type-specific diversification in human heart failure", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Single-nucleus RNA sequencing in ischemic cardiomyopathy reveals common transcriptional profile unde", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-nucleus chromatin accessibility and transcriptomic map of breast tissues of women of diverse ", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Skin single cell universe identifies IL-1B/IL23A co-producing CD14+ type 3 dendritic cells in psoria", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Spatial multiomics map of trophoblast development in early pregnancy", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Spatial transcriptomic profiling of human retinoblastoma", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "projectTitle", + "filterValue": "Spatial transcriptomics of healthy and fibrotic human liver at single-cell resolution", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Spatially distinct reprogramming of the tumor microenvironment based on tumor invasion in diffuse-ty", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Spatiotemporal Analysis of Human Intestinal Development at Single Cell Resolution - scRNA-Seq", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Stress-induced RNA\u2013chromatin interactions promote endothelial dysfunction", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Targeting the Immune-Fibrosis Axis in Myocardial Infarction and Heart Failure", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "The Human and Mouse Enteric Nervous System at Single-Cell Resolution.", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "The landscape of immune dysregulation in Crohn's disease revealed through single-cell transcriptomic", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "projectTitle", + "filterValue": "Transcriptome Landscape of Human Folliculogenesis Reveals Oocytes and Granulosa Cells Interactions", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Transcriptomic and spatial dissection of human ex\u00a0vivo right atrial tissue reveals proinflammatory m", + "count": 1, + "change": null + }, + { + "filterName": "projectTitle", + "filterValue": "Transcriptomic characterisation of haematopoietic stem and progenitor cells from human adult bone ma", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "CD1c-positive myeloid dendritic cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "CD4-positive, alpha-beta T cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "CD4-positive, alpha-beta memory T cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "CD8-positive, alpha-beta cytokine secreting effector T cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "CD8-positive, alpha-beta cytotoxic T cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "CD8-positive, alpha-beta memory T cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "Fibroblast", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "Leukocyte", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "Schwann cell", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "selectedCellType", + "filterValue": "acinar cell of salivary gland", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "adventitial cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "astrocyte", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "basal cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "basal cell of prostate epithelium", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "bladder urothelial cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "blood vessel endothelial cell", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "bone cell", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "bronchial smooth muscle cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "capillary endothelial cell", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "cd4neg cd45pos immune cell", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "chondrocyte", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "common lymphoid progenitor", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "common myeloid progenitor", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "conjunctival epithelial cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "endothelial cell of hepatic sinusoid", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "endothelial cell of vascular tree", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "enterocyte", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "enterocyte of epithelium of large intestine", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "enterocyte of epithelium of small intestine", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "eosinophil", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "epicardial adipocyte", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "selectedCellType", + "filterValue": "epithelial cell of lacrimal sac", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "epithelial cell of uterus", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "erythrocyte", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "erythroid progenitor cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "eye photoreceptor cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "fast muscle cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "fat cell", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "fetal liver hematopoietic progenitor cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "fibroblast of connective tissue of prostate", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "fibroblast of dermis", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "goblet cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "gut endothelial cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "intermediate monocyte", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "intestinal crypt stem cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "intestinal crypt stem cell of large intestine", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "intestinal crypt stem cell of small intestine", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "intestinal tuft cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "intrahepatic cholangiocyte", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "keratinocyte", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "lung macrophage", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "lymphocyte", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "megakaryocyte", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "melanocyte", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "mesenchymal cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "monocytes", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "mononuclear cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "mononuclear cytotrophoblast cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "naive regulatory T cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "natural killer cells", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "neural cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "neuroendocrine cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "pancreatic B cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "pancreatic endocrine cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "plasma cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "platelet", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "pluripotent stem cell", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "prostate epithelial cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "retinal cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "retinal pigment epithelial cell", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "selectedCellType", + "filterValue": "skeletal muscle satellite myogenic cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "skin fibroblast", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "stem cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "theca cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "tracheal goblet cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "transit amplifying cell of large intestine", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "transit amplifying cell of small intestine", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "type I NK T cell", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "type II pneumocyte", + "count": 1, + "change": null + }, + { + "filterName": "selectedCellType", + "filterValue": "vascular associated smooth muscle cell", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "selectedCellType", + "filterValue": "vein endothelial cell", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "Crohn disease", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenDisease", + "filterValue": "HER2 positive breast carcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "Ischemic stroke", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "LPS", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "adenocarcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "breast adenocarcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "breast carcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "breast ductal adenocarcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "breast lobular carcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "childhood acute lymphoblastic leukemia", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "chronic rhinosinusitis", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "cirrhosis of liver", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "colitis", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "colorectal adenocarcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "diabetes mellitus", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenDisease", + "filterValue": "endometriosis", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "estrogen-receptor positive breast cancer", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "fatty liver disease", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "fibrotic liver disease", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "functional colonic disease", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "gastric adenocarcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "gastric cancer", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenDisease", + "filterValue": "glioblastoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "glioblastoma (disease)", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "head and neck squamous cell carcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "hepatocellular carcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "inflammatory disease", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "invasive ductal breast carcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "luminal B breast carcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "lung cancer", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenDisease", + "filterValue": "myocardial infarction", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "obesity disorder", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "ovarian cancer", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenDisease", + "filterValue": "pancreatic intraductal papillary-mucinous neoplasm", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "polyp", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "polyp of colon", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "preeclampsia", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "retinoblastoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "systemic lupus erythematosus", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "specimenDisease", + "filterValue": "triple-negative breast carcinoma", + "count": 1, + "change": null + }, + { + "filterName": "specimenDisease", + "filterValue": "ulcerative colitis", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "Ear", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Head", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "Placenta", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Tonsil", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Upper third secondary molar tooth", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "Yolk sac", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "abdominal wall", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "amniotic fluid", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "aorta", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "aorta-gonad-mesonephros", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "blastocyst", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "calcareous tooth", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "cervical lymph node", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "chest", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "decidua", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "fallopian tube", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "foreskin fibroblast", + "count": 1, + "change": -0.7741935483870968 + }, + { + "filterName": "specimenOrgan", + "filterValue": "gall bladder", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "gonad", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "hindgut", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "hindlimb", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "immune system", + "count": 1, + "change": -0.7741935483870968 + }, + { + "filterName": "specimenOrgan", + "filterValue": "molar tooth", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "mouth mucosa", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "muscle of pelvis", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "musculoskeletal system", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "neck", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "null", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "omentum", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "oral cavity", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "palatine tonsil", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "rectum", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "renal system", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "right eye", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "right lower second secondary premolar tooth", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "right upper second secondary premolar tooth", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "sacral spinal cord", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin of breast", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin of calf", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin of cheek", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin of external ear", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin of forearm", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin of forehead", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin of limb", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skin of scalp", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "skull", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "tail", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "tendon", + "count": 1, + "change": -0.6989247311827957 + }, + { + "filterName": "specimenOrgan", + "filterValue": "thoracic spinal cord", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "tibial nerve", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "tibialis", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "tongue", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "tooth bud", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "upper leg skin", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "urine", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "specimenOrgan", + "filterValue": "vermiform appendix", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "vitelline artery", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "white matter of cerebellum", + "count": 1, + "change": null + }, + { + "filterName": "specimenOrgan", + "filterValue": "whole embryos", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "specimenOrgan", + "filterValue": "yolk sac", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "workflow", + "filterValue": "10x_analysis_protocol", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "workflow", + "filterValue": "10x_gene_expression_analysis", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "10x_initial", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "10x_matrix_generation", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "workflow", + "filterValue": "10x_matrix_normalisation", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "workflow", + "filterValue": "10x_qc", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "10x_raw_matrix_generation", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "workflow", + "filterValue": "AIDA_ManagedAccess_ImputedGenotypes_October2022_JP", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "ATAC_merge", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "workflow", + "filterValue": "Gene_count_matrix_generation", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "PCA", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_1", + "count": 1, + "change": -0.5483870967741935 + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_scRNA-seq", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_scRNAseq", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "workflow", + "filterValue": "analysis_quant_raw_scrna", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "analysisprotocol", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "atac_seq_processing", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "workflow", + "filterValue": "cell_UMAP", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "workflow", + "filterValue": "human_gex", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "matrix_generation_multiome", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "multiome_raw_matrix_generation", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "workflow", + "filterValue": "normalized_gex_all", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "peak_calling", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "raw_gex_scrna", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "raw_matrix_generation_nasal", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "raw_matrix_scRNA", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "workflow", + "filterValue": "scRNA_analysis", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "workflow", + "filterValue": "visium_analysis_protocol", + "count": 1, + "change": -0.8193548387096774 + }, + { + "filterName": "contactName", + "filterValue": "Alex,K,Shalek", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Arnold R,,Kriegstein", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Arnold,R,Kriegstein", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Bao,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Bao-Hua,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Biao,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Bin,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Biyan,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Bowen,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Chan Zuckerberg Initiative Single-Cell COVID-19 Consortia", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Chen,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Christoph,,Kuppe", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Chun Jimmie Ye", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Chun Jimmie,,Ye", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Dan,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Elo,,Madissoon", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Erik Y,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Guang-Xian,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Haiying,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Hao,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Haofeng,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Hengwei,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Hong-Dan,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Hui,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Isabella Cotta Galv\u00e3o", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Iva,,Kelava", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Jianming,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Julio,,Saez-Rodriguez", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Junyue,,Cao", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Lei,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Li,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Lin,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Lisa,,Sikkema", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Long,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Man,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Momoko,,Watanabe", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Muzlifah,,Haniffa", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Muzlifah,A,Haniffa", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Muzlifah,Haniffa", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Nancy R,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Peipei,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Peng,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Ping,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Qi,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Qian,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Qing-Yang,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Qingquan,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Qingyun,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Qiong,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Sally,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Sarah Teichmann", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Sarah,A,Teichmann", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Shile,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Shu,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Shuting,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Taylor,S,Adams", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Tengjiao,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Ting,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Tingyue,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Tong,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Tuo,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Wei,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Weifeng,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Weiqi,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Weiruo,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Weizhou,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Wen,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Xiaoting,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Yajun,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Yan,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Yangqianwen,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Yani,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Yanxiao,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Yanyu,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Ye,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Yong,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Yun,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Yuping,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Yusuke,,Yamamoto", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Yuxia,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Zemin,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Zhanghua,,Chen", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Zhengyan,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "Zidong,,Zhang", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contactName", + "filterValue": "null", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contentDescription", + "filterValue": "An index of a genome sequence", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contentDescription", + "filterValue": "Database entry metadata", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contentDescription", + "filterValue": "UMI barcode", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contentDescription", + "filterValue": "cell barcode", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contentDescription", + "filterValue": "gene expression matrix", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contentDescription", + "filterValue": "gene list", + "count": 0, + "change": -1.0 + }, + { + "filterName": "contentDescription", + "filterValue": "image", + "count": 0, + "change": -1.0 + }, + { + "filterName": "dataUseRestriction", + "filterValue": "null", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "12-year-old stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "12th week post-fertilization stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "13-year-old human stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "15-year-old stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "15th week post-fertilization stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "18-year-old human stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "18-year-old stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "21-year-old human stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "21-year-old stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "24th week post-fertilization human stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "24th week post-fertilization stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "25th week post-fertilization human stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "27th week post-fertilization human stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "29-year-old human stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "29-year-old stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "33-year-old human stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "80 year-old and over stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "blastula stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "eighth decade stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic day 10.5", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic day 11.5", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic day 13", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic day 13.5", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic day 14.5", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic day 16.5", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic day 18.5", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "human aged stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "ninenth decade stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "nursing stage (0-11 months)", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "organogenesis stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "seventh decade stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "sixth decade stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "third decade stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "Asthma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "Bronchitis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "Crohn ileitis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "Scarring", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "acoustic neuroma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "adenocarcinoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "adrenal cortex adenoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "allergic asthma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "anemia (disease)", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "aortic atherosclerosis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "aplastic anemia", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "arthritic joint disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "arthritis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "asthma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "asymptomatic COVID-19 infection", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "atrial fibrillation", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "autoimmune encephalitis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "basal cell carcinoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "bronchiolitis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "bronchopneumonia", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "carcinoma of supraglottis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "carcinosarcoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "celiac disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "childhood acute lymphoblastic leukemia", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "cholangiocarcinoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "chromophobe renal cell carcinoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "chronic obstructive pulmonary disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "chronic rhinosinusitis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "cirrhosis of liver", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "coronary artery disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "critical COVID-19 infection", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "cystic fibrosis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "dementia", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "dengue disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "drug rash with eosinophilia and systemic symptoms", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "fatty liver disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "gastric adenocarcinoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "gastroesophageal reflux disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "glomerulonephritis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "hepatocellular adenoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "inflammatory disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "intrahepatic cholangiocarcinoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "laryngotracheitis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "liver disorder", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "liver hemangioma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "metastasis from malignant tumor of colon", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "mild COVID-19 infection", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "mild/moderate COVID-19", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "moderate COVID-19 infection", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "myelodysplastic syndrome", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "myocardial infarction (disease)", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "myocardial ischemia", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "non-specific interstitial pneumonia", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "null", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "oral submucous fibrosis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "osteoporosis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "plasma cell myeloma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "pneumonia", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "septic shock", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "severe COVID-19 infection", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "severe/critical COVID-19", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "status asthmaticus", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "stroke disorder", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "temporal lobe epilepsy", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "testicular cancer", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "|cardiovascular disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "fileFormat", + "filterValue": ".h5", + "count": 0, + "change": -1.0 + }, + { + "filterName": "fileFormat", + "filterValue": ".h5ad", + "count": 0, + "change": -1.0 + }, + { + "filterName": "fileFormat", + "filterValue": "RAW.tar", + "count": 0, + "change": -1.0 + }, + { + "filterName": "fileFormat", + "filterValue": "h5.gz", + "count": 0, + "change": -1.0 + }, + { + "filterName": "fileFormat", + "filterValue": "h5ad.tar.gz", + "count": 0, + "change": -1.0 + }, + { + "filterName": "fileFormat", + "filterValue": "h5ad.zip", + "count": 0, + "change": -1.0 + }, + { + "filterName": "fileFormat", + "filterValue": "tiff", + "count": 0, + "change": -1.0 + }, + { + "filterName": "institution", + "filterValue": "Broad Institute of MIT and Harvard", + "count": 0, + "change": -1.0 + }, + { + "filterName": "institution", + "filterValue": "Columbia University Irving Medical Center", + "count": 0, + "change": -1.0 + }, + { + "filterName": "institution", + "filterValue": "Gastrointestinal Cancer Biology, International Research Center for Medical Sciences (IRCMS), Kumamot", + "count": 0, + "change": -1.0 + }, + { + "filterName": "institution", + "filterValue": "Gastrointestinal Unit and Center for the Study of Inflammatory Bowel Disease, MGH, Boston, MA, USA", + "count": 0, + "change": -1.0 + }, + { + "filterName": "institution", + "filterValue": "Gastrointestinal Unit and Center for the Study of Inflammatory Bowel Disease, MGH, Boston, MA, USA.", + "count": 0, + "change": -1.0 + }, + { + "filterName": "institution", + "filterValue": "National Institute on Deafness and Other Communication Disorders", + "count": 0, + "change": -1.0 + }, + { + "filterName": "institution", + "filterValue": "University of Michigan", + "count": 0, + "change": -1.0 + }, + { + "filterName": "institution", + "filterValue": "University of Texas MD Anderson Cancer Center", + "count": 0, + "change": -1.0 + }, + { + "filterName": "instrumentManufacturerModel", + "filterValue": "Illumina HiSeq X", + "count": 0, + "change": -1.0 + }, + { + "filterName": "instrumentManufacturerModel", + "filterValue": "Illumina NextSeq 500", + "count": 0, + "change": -1.0 + }, + { + "filterName": "instrumentManufacturerModel", + "filterValue": "Illumina NextSeq 550", + "count": 0, + "change": -1.0 + }, + { + "filterName": "instrumentManufacturerModel", + "filterValue": "Illumina NovaSeq 6000", + "count": 0, + "change": -1.0 + }, + { + "filterName": "instrumentManufacturerModel", + "filterValue": "null", + "count": 0, + "change": -1.0 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X 3' v1 sequencing", + "count": 0, + "change": -1.0 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10X TCR enrichment", + "count": 0, + "change": -1.0 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "TCR 10x 5' v2", + "count": 0, + "change": -1.0 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "Visium 10x GE", + "count": 0, + "change": -1.0 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "droplet-based single-cell RNA library preparation", + "count": 0, + "change": -1.0 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "sci-RNA-seq", + "count": 0, + "change": -1.0 + }, + { + "filterName": "modelOrgan", + "filterValue": "Thymus", + "count": 0, + "change": -1.0 + }, + { + "filterName": "modelOrgan", + "filterValue": "endometrium", + "count": 0, + "change": -1.0 + }, + { + "filterName": "modelOrgan", + "filterValue": "tendon", + "count": 0, + "change": -1.0 + }, + { + "filterName": "modelOrgan", + "filterValue": "thymus", + "count": 0, + "change": -1.0 + }, + { + "filterName": "modelOrgan", + "filterValue": "trachea", + "count": 0, + "change": -1.0 + }, + { + "filterName": "modelOrgan", + "filterValue": "uterus", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "Cardia of stomach", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "Hippocampus", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "abdominal aorta", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "amygdala", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "apical region of left ventricle", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "bronchus", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "cardia of stomach", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "choroid plexus", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "connective tissue", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "cornea", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "cortex of kidney", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "definitive endoderm", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "dermis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "entorhinal cortex", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "esophagus", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "follicular antrum", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "ganglionic eminence", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "left cardic atrium", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "left ventricle myocardium", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "lingula of left lung", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "liver stroma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "lobar bronchus of left lung lower lobe", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "lobar bronchus of left lung upper lobe", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "lobar bronchus of right lung caudal lobe", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "lobar bronchus of right lung cranial lobe", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "lobe of lung", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "lower lobe of lung", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "lower lobe of right lung", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "mammary gland", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "outer cortex of kidney", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "peripheral region of retina", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "pyloric antrum", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "right branch of atrioventricular bundle", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "right cardiac chamber", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "right cardic atrium", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "skeletal muscle tissue", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "skin of breast", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "skin of face", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "skin of forehead", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "skin of lateral lumbar region of abdomen", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "skin of palm of manus", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "skin of pelvis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "skin of pes", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "skin of prepuce of penis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "skin of shoulder", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "skin of sole of pes", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "substantia nigra", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "upper back skin", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "upper lobe of left lung", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "upper lobe of lung", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "upper lobe of right lung", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "upper outer quadrant of breast", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "uterine cervix", + "count": 0, + "change": -1.0 + }, + { + "filterName": "organPart", + "filterValue": "vertebral endplate", + "count": 0, + "change": -1.0 + }, + { + "filterName": "preservationMethod", + "filterValue": "cryopreservation, other", + "count": 0, + "change": -1.0 + }, + { + "filterName": "preservationMethod", + "filterValue": "fresh", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "A Partial Picture of the Single-Cell Transcriptomics of Human IgA Nephropathy", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "A Protocol for Revealing Oral Neutrophil Heterogeneity by Single-Cell Immune Profiling in Human Sali", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "A Single-Cell Transcriptome Atlas of Glia Diversity in the Human Hippocampus across the Lifespan and", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "A spatially resolved atlas of the human lung characterizes a gland-associated immune niche", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "A survey of human brain transcriptome diversity at the single cell level", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "An Atlas of Immune Cell Exhaustion in HIV-Infected Individuals Revealed by Single-Cell Transcriptomi", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Blood and immune development in human fetal bone marrow and Down syndrome", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Bone marrow plasma cells from hip replacement surgeries", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "CD27hiCD38hi plasmablasts are activated B cells of mixed origin with distinct function", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "CITE-seq of in vitro control and memory-like human NK cells", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "COVID-19 tissue atlases reveal SARS-CoV-2 pathology and cellular targets.", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Capturing human trophoblast development with naive pluripotent stem cells in vitro", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Circuits between infected macrophages and T cells in SARS-CoV-2 pneumonia.", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Colonic single epithelial cell census reveals goblet cell drivers of barrier breakdown in inflammato", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Decoding Human Megakaryocyte Development", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Detection of infiltrating fibroblasts by single-cell transcriptomics in human kidney allografts", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Dissecting the treatment-naive ecosystem of human melanoma brain metastasis.", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Distinct microbial and immune niches of the human colon", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Exploring cellular changes in ruptured human quadriceps tendons at single-cell resolution", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Extreme heterogeneity of influenza virus infection in single cells", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Identification of a mesenchymal progenitor cell hierarchy in adipose tissue (scRNA-seq)", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Integrated scRNA-Seq Identifies Human Postnatal Thymus Seeding Progenitors and Regulatory Dynamics o", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Longitudinal Multi-omics Analyses Identify Responses of Megakaryocytes, Erythroid Cells, and Plasmab", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Melanoma infiltration of stromal and immune cells", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Molecular Pathways of Colon Inflammation Induced by Cancer Immunotherapy", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Multi-scale spatial mapping of cell populations across anatomical sites in healthy human skin and ba", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Multimodal profiling reveals tissue-directed signatures of human immune cells altered with age", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Oleic acid restores suppressive defects in tissue-resident FOXP3 Tregs from patients with multiple s", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "RNA Sequencing of Single Human Islet Cells Reveals Type 2 Diabetes Genes", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Reconstructing the human first trimester fetal-maternal interface using single cell transcriptomics", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single cell RNA sequencing to dissect the molecular heterogeneity in lupus nephritis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single cell RNA-seq analysis of adult and paediatric IDH-wildtype Glioblastomas", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single cell RNA-seq of brain glioblastoma samples", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single cell transcriptomics of human epidermis identifies basal stem cell transition states.", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single nucleus and spatial transcriptomic profiling of human healthy hamstring tendon", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-Cell Atlas of Lineage States, Tumor Microenvironment, and Subtype-Specific Expression Program", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-Cell RNAseq analysis of diffuse neoplastic infiltrating cells at the migrating front of human", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-Cell Transcriptome Profiling of Human Pancreatic Islets in Health and Type 2 Diabetes", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-Cell Transcriptomics Reveal Immune Mechanisms of the Onset and Progression of IgA Nephropathy", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell RNA sequencing identifies celltype-specific cis-eQTLs and co-expression QTLs", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell RNA-sequencing reveals the landscape of cervical cancer heterogeneity", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell analysis reveals congruence between kidney organoids and human fetal kidney", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell sequencing links multiregional immune landscapes and tissue-resident T\u00a0cells in ccRCC to", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell survey of human lymphatics unveils marked endothelial cell heterogeneity and mechanisms ", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell transcriptome profiling of an adult human cell atlas of 15 major organs", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell transcriptomic and proteomic analysis of Parkinson\u2019s disease brains", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell transcriptomics of normal pancreas, intraductal papillary mucinous neoplasm, and pancrea", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell transcriptomics reveals distinct effector profiles of infiltrating T cells in lupus skin", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-nuclei profiling of aged skeletal muscle", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-nucleus RNA sequencing and spatial transcriptomics decode cell type-specific drivers underlyi", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Spatial and single-cell transcriptional profiling identifies functionally distinct human dermal fibr", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Spatial multi-omic map of human myocardial infarction", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Spatial proteogenomics reveals distinct and evolutionarily conserved hepatic macrophage niches", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Spatially resolved human kidney multi-omics single cell atlas highlights the key role of the fibroti", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Spatially resolved multiomics of human cardiac niches", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Spatially resolved transcriptomics reveals pro-inflammatory fibroblast involved in lymphocyte recrui", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Structural Remodeling of the Human Colonic Mesenchyme in Inflammatory Bowel Disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Tabula Muris: Transcriptomic characterization of 20 organs and tissues from Mus musculus at single c", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "The Immune Atlas of Human Deciduas With Unexplained Recurrent Pregnancy Loss", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "The Tabula Sapiens: A multiple-organ, single-cell transcriptomic atlas of humans", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "The immune cell landscape in kidneys of patients with lupus nephritis.", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "The normal human lymph node cell classification and landscape defined by high-dimensional spatial pr", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Ulcerative colitis is characterized by a plasmablast-skewed humoral response associated with disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Ureter single-cell and spatial mapping reveal cell types, architecture, and signaling networks", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Village in a dish: a model system for population-scale hiPSC studies", + "count": 0, + "change": -1.0 + }, + { + "filterName": "selectedCellType", + "filterValue": "conventional dendritic cell", + "count": 0, + "change": -1.0 + }, + { + "filterName": "selectedCellType", + "filterValue": "germ cell", + "count": 0, + "change": -1.0 + }, + { + "filterName": "selectedCellType", + "filterValue": "glial cell", + "count": 0, + "change": -1.0 + }, + { + "filterName": "selectedCellType", + "filterValue": "glutamatergic neuron", + "count": 0, + "change": -1.0 + }, + { + "filterName": "selectedCellType", + "filterValue": "granulosa cell", + "count": 0, + "change": -1.0 + }, + { + "filterName": "selectedCellType", + "filterValue": "immune", + "count": 0, + "change": -1.0 + }, + { + "filterName": "selectedCellType", + "filterValue": "keratocyte", + "count": 0, + "change": -1.0 + }, + { + "filterName": "selectedCellType", + "filterValue": "nasal cavity respiratory epithelium epithelial cell of viscerocranial mucosa", + "count": 0, + "change": -1.0 + }, + { + "filterName": "selectedCellType", + "filterValue": "neurons", + "count": 0, + "change": -1.0 + }, + { + "filterName": "selectedCellType", + "filterValue": "plasmacytoid dendritic cell", + "count": 0, + "change": -1.0 + }, + { + "filterName": "selectedCellType", + "filterValue": "trophectodermal cell", + "count": 0, + "change": -1.0 + }, + { + "filterName": "selectedCellType", + "filterValue": "trophoblast cell", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "Acute antibody-mediated rejection treatment's outcome unclear", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "B-cell neoplasm", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "HIV infectious disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "aortic atherosclerosis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "atherosclerosis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "bacterial infectious disease with sepsis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "chronic obstructive pulmonary disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "cystic fibrosis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "fixed subaortic stenosis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "heart disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "hyperlipidemia", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "interstitial lung disease 2", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "kidney disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "lung large cell carcinoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "lung pleomorphic carcinoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "non-alcoholic steatohepatitis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "non-small cell lung carcinoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "null", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "osteoarthritis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "post-transplant lymphoproliferative disease", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "prostate cancer", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "squamous cell lung carcinoma", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenDisease", + "filterValue": "systemic sclerosis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Esophagus", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Ileum", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Jejunum", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Mandible", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Oropharynx", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "axillary lymph node", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "bile duct", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "biliary system", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "bodily fluid", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "bone element", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "brain organoids", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "bronchus", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "caecum", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "cerebral cortex", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "dermis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "digestive tract", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "femur", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "glabella skin", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "inguinal region skin", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "intervertebral disk", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "limb", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "mammary gland", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "mesentery", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "nose skin", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "pair of lungs", + "count": 0, + "change": -1.0 + }, + { + "filterName": "specimenOrgan", + "filterValue": "pituitary gland", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "10x_analysis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "ATAC_cluster", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "ATAC_fragments", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "ATAC_raw_count", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "ATAC_umap", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "GSE111976_ct_endo_10x_protocol", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "Visium_analysis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "Visium_processed", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "Visiumanalysis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "analysis _protocol_bulk_BCR", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_10XVisium", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_processed_human_lung", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_scATAC-seq", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_scATACseq", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_single_cells", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_spatial_dsp", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "analysis_protocol_visium", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "ap_processedMatrixGenerationSpatial", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "ap_rawMatrixGenerationSpatial", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "cellranger_atac_analysis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "downstream_analysis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "matrix_generation_ATAC-seq", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "matrix_generation_ATACseq", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "matrix_generation_RNA-seq", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "matrix_generation_visium", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "merfish_analysis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "multiome_ATAC_processed", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "null", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "processed_matrix_generation_visium", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "raw_matrix_generation_ATAC", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "raw_matrix_generation_spatial", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "raw_matrix_scATAC", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "raw_matrix_visium", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "scATAC_matrix_generation", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "sc_rnaseq_raw_matrix_generation", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "scrna_seq_processing", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "spaceranger_matrix_generation", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "spatial_transcriptomic_analysis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "spatial_transcriptomics_characterisation", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "visium_analysis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "visium_downstream_analysis", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "visium_gex", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "visium_matrix_ap", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "visium_matrix_generation", + "count": 0, + "change": -1.0 + }, + { + "filterName": "workflow", + "filterValue": "visium_raw_matrix_generation", + "count": 0, + "change": -1.0 + } +] \ No newline at end of file diff --git a/gh-pages/hca-explorer/data/meta.json b/gh-pages/hca-explorer/data/meta.json new file mode 100644 index 000000000..664f5a307 --- /dev/null +++ b/gh-pages/hca-explorer/data/meta.json @@ -0,0 +1,17 @@ +{ + "generated_at": "2026-04-28 15:38:58", + "current_month": "2026-03", + "current_month_start": "2026-03-01", + "current_month_end": "2026-03-31", + "prior_month_start": "2026-02-01", + "prior_month_end": "2026-02-28", + "analytics_start": "2024-02-01", + "sessions": { + "current": 13266, + "prior": 10900 + }, + "engagement_rate": { + "current": 0.52962460425147, + "prior": 0.5529357798165138 + } +} \ No newline at end of file diff --git a/gh-pages/hca-explorer/data/monthly_traffic.json b/gh-pages/hca-explorer/data/monthly_traffic.json new file mode 100644 index 000000000..e6ed8e7b8 --- /dev/null +++ b/gh-pages/hca-explorer/data/monthly_traffic.json @@ -0,0 +1,132 @@ +[ + { + "month": "2026-03", + "users": 7902, + "pageviews": 42177 + }, + { + "month": "2026-02", + "users": 6909, + "pageviews": 35141 + }, + { + "month": "2026-01", + "users": 8335, + "pageviews": 46675 + }, + { + "month": "2025-12", + "users": 7234, + "pageviews": 41833 + }, + { + "month": "2025-11", + "users": 7939, + "pageviews": 48342 + }, + { + "month": "2025-10", + "users": 9065, + "pageviews": 49657 + }, + { + "month": "2025-09", + "users": 7800, + "pageviews": 47915 + }, + { + "month": "2025-08", + "users": 6900, + "pageviews": 43788 + }, + { + "month": "2025-07", + "users": 7926, + "pageviews": 55267 + }, + { + "month": "2025-06", + "users": 7747, + "pageviews": 55925 + }, + { + "month": "2025-05", + "users": 8170, + "pageviews": 58524 + }, + { + "month": "2025-04", + "users": 9799, + "pageviews": 69939 + }, + { + "month": "2025-03", + "users": 8024, + "pageviews": 68385 + }, + { + "month": "2025-02", + "users": 6947, + "pageviews": 56204 + }, + { + "month": "2025-01", + "users": 6721, + "pageviews": 56819 + }, + { + "month": "2024-12", + "users": 7815, + "pageviews": 63458 + }, + { + "month": "2024-11", + "users": 9676, + "pageviews": 77427 + }, + { + "month": "2024-10", + "users": 6771, + "pageviews": 56896 + }, + { + "month": "2024-09", + "users": 6132, + "pageviews": 55103 + }, + { + "month": "2024-08", + "users": 5634, + "pageviews": 45480 + }, + { + "month": "2024-07", + "users": 5943, + "pageviews": 49307 + }, + { + "month": "2024-06", + "users": 6632, + "pageviews": 57779 + }, + { + "month": "2024-05", + "users": 7249, + "pageviews": 64342 + }, + { + "month": "2024-04", + "users": 7421, + "pageviews": 59416 + }, + { + "month": "2024-03", + "users": 7283, + "pageviews": 65094 + }, + { + "month": "2024-02", + "users": 6229, + "pageviews": 51746 + } +] \ No newline at end of file diff --git a/gh-pages/hca-explorer/data/outbound_links.json b/gh-pages/hca-explorer/data/outbound_links.json new file mode 100644 index 000000000..bdaa61840 --- /dev/null +++ b/gh-pages/hca-explorer/data/outbound_links.json @@ -0,0 +1,10632 @@ +[ + { + "link": "https://cellxgene.cziscience.com/e/9f222629-9e39-47d0-b83f-e08d610c7479.cxg/", + "clicks": 187, + "change": -0.13824884792626724 + }, + { + "link": "https://cellxgene.cziscience.com/e/8e10f1c4-8e98-41e5-b65f-8cd89a887122.cxg/", + "clicks": 122, + "change": -0.007265329845974944 + }, + { + "link": "https://cellxgene.cziscience.com/e/d6505c89-c43d-4c28-8c4f-7351a5fd5528.cxg/", + "clicks": 110, + "change": 0.25765618619844854 + }, + { + "link": "https://github.com/LungCellAtlas/HLCA", + "clicks": 101, + "change": 0.3032258064516129 + }, + { + "link": "https://cellxgene.cziscience.com/e/066943a2-fdac-4b29-b348-40cede398e4e.cxg/", + "clicks": 58, + "change": -0.39084771192798196 + }, + { + "link": "https://cellxgene.cziscience.com/collections/6f6d381a-7701-4781-935c-db10d30de293", + "clicks": 44, + "change": -0.17204301075268824 + }, + { + "link": "https://doi.org/10.1038/s41591-023-02327-2", + "clicks": 42, + "change": 0.2237252861602499 + }, + { + "link": "https://doi.org/10.1126/science.add7046", + "clicks": 34, + "change": 0.13739545997610514 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/dbb5ad81-1713-4aee-8257-396fbabe7c6e.h5ad", + "clicks": 29, + "change": -0.06451612903225812 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/a71efd3c-765c-466b-8eca-0b29024094d4.h5ad", + "clicks": 26, + "change": 0.381404174573055 + }, + { + "link": "https://cells.ucsc.edu/?ds=retina+hrca+atac", + "clicks": 22, + "change": -0.33763440860215055 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/4cb45d80-499a-48ae-a056-c71ac3552c94.h5ad", + "clicks": 22, + "change": -0.053763440860215006 + }, + { + "link": "https://cellxgene.cziscience.com/collections/283d65eb-dd53-496d-adb7-7570c7caa443", + "clicks": 22, + "change": 0.9870967741935484 + }, + { + "link": "https://cellxgene.cziscience.com/e/b165f033-9dec-468a-9248-802fc6902a74.cxg/", + "clicks": 20, + "change": -0.3978494623655914 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/756a5b42-fbf9-4076-a7de-8c4ba34dc629.h5ad", + "clicks": 20, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/d7f5d8d0-6150-48d7-b094-c34286ad11a1.cxg/", + "clicks": 19, + "change": -0.28494623655913986 + }, + { + "link": "https://data.humancellatlas.org/help", + "clicks": 19, + "change": 0.5601173020527859 + }, + { + "link": "https://doi.org/10.1101/2023.11.07.566105", + "clicks": 18, + "change": -0.0436432637571158 + }, + { + "link": "https://duos.org/dataset/DUOS-000258", + "clicks": 18, + "change": 7.129032258064516 + }, + { + "link": "https://github.com/linnarsson-lab/adult-human-brain", + "clicks": 17, + "change": 0.27956989247311825 + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 16, + "change": 0.4451612903225808 + }, + { + "link": "https://www.humancellatlas.org/register", + "clicks": 16, + "change": 0.032258064516129004 + }, + { + "link": "https://cellxgene.cziscience.com/e/be41a86a-b606-4b1c-8055-32f334898775.cxg/", + "clicks": 16, + "change": -0.23938879456706275 + }, + { + "link": "https://cellxgene.cziscience.com/collections/4c6eaf5c-6d57-4c76-b1e9-60df8c655f1e", + "clicks": 16, + "change": -0.03655913978494629 + }, + { + "link": "https://cellxgene.cziscience.com/e/40e79234-65e8-45e9-b555-5c663154a108.cxg/", + "clicks": 16, + "change": 2.6129032258064515 + }, + { + "link": "https://talk2data.bioturing.com/?tab=studies&version_id=hca¶ms=N4IgbgpgTgzglgewHYgFwgBYGMCGIC%2B", + "clicks": 13, + "change": 0.17419354838709689 + }, + { + "link": "https://cellxgene.cziscience.com/e/700aed19-c16e-4ba8-9191-07da098a8626.cxg/", + "clicks": 12, + "change": -0.16625310173697272 + }, + { + "link": "https://cellxgene.cziscience.com/e/f7d003d4-40d5-4de8-858c-a9a8b48fcc67.cxg/", + "clicks": 12, + "change": -0.014662756598240456 + }, + { + "link": "https://drive.google.com/drive/folders/1ngcIgKBV9OUM1pPO-CDRH6ZIpyiSpamu?usp=sharing", + "clicks": 12, + "change": 0.5483870967741935 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/c1d05de1-d442-48b1-a32c-86f4f0dc5f82.h5ad", + "clicks": 12, + "change": 1.7096774193548385 + }, + { + "link": "https://identifiers.org/ena.embl:ERP122984", + "clicks": 11, + "change": 0.4193548387096775 + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001006330", + "clicks": 11, + "change": 2.311827956989247 + }, + { + "link": "https://talk2data.bioturing.com/?tab=studies&version_id=hca¶ms=N4IgbgpgTgzglgewHYgFwgBYGMCGIC%2B", + "clicks": 11, + "change": 0.6559139784946235 + }, + { + "link": "https://cellxgene.cziscience.com/e/c3aa4f95-7a18-4a7d-8dd8-ca324d714363.cxg/", + "clicks": 11, + "change": 0.4193548387096775 + }, + { + "link": "https://www.nature.com/articles/s41598-019-57110-6", + "clicks": 11, + "change": 0.4193548387096775 + }, + { + "link": "https://www.nature.com/articles/s41467-019-12464-3", + "clicks": 11, + "change": 0.10394265232974909 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/c426f20f-e853-4370-8c5f-842e83c3c1e3.h5ad", + "clicks": 11, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41586-020-2157-4", + "clicks": 10, + "change": 1.258064516129032 + }, + { + "link": "https://www.science.org/doi/10.1126/science.abl5197", + "clicks": 10, + "change": 2.010752688172043 + }, + { + "link": "https://cellxgene.cziscience.com/e/6725ee8e-ef5b-4e68-8901-61bd14a1fe73.cxg/", + "clicks": 10, + "change": -0.3548387096774194 + }, + { + "link": "https://cellxgene.cziscience.com/e/776a1e4a-f141-49bb-9978-d0588a4cee9f.cxg/", + "clicks": 9, + "change": -0.3746898263027295 + }, + { + "link": "https://doi.org/10.1038/s41588-025-02182-6", + "clicks": 9, + "change": 0.35483870967741926 + }, + { + "link": "https://docs.google.com/document/d/1CqL_t2CMcZF257rvjObDR_2WejsQ019rgUoX0YPJggM/edit#heading=h.56vfd", + "clicks": 9, + "change": -0.09677419354838701 + }, + { + "link": "https://www.cell.com/cell-reports/fulltext/S2211-1247(23)01248-2", + "clicks": 9, + "change": 0.35483870967741926 + }, + { + "link": "https://www.nature.com/articles/s41586-021-03852-1", + "clicks": 9, + "change": 0.6258064516129032 + }, + { + "link": "https://identifiers.org/geo:GSE184950", + "clicks": 9, + "change": 1.032258064516129 + }, + { + "link": "https://doi.org/10.1038/s41588-024-01873-w", + "clicks": 9, + "change": 3.064516129032258 + }, + { + "link": "https://doi.org/10.1038/s41590-025-02241-4", + "clicks": 8, + "change": 2.6129032258064515 + }, + { + "link": "https://science.sciencemag.org/content/370/6518/eaba7721", + "clicks": 8, + "change": 0.20430107526881724 + }, + { + "link": "https://doi.org/10.1038/s41586-024-08172-8", + "clicks": 8, + "change": 0.20430107526881724 + }, + { + "link": "https://docs.google.com/document/d/1CqL_t2CMcZF257rvjObDR_2WejsQ019rgUoX0YPJggM/edit#heading=h.3shy5", + "clicks": 8, + "change": -0.5483870967741935 + }, + { + "link": "https://insight.jci.org/articles/view/93009", + "clicks": 8, + "change": -0.343108504398827 + }, + { + "link": "https://github.com/BaderLab/HumanLiver", + "clicks": 8, + "change": null + }, + { + "link": "https://github.com/RCHENLAB/HRCA_reproducibility", + "clicks": 7, + "change": 0.5806451612903225 + }, + { + "link": "https://data.humancellatlas.org/", + "clicks": 7, + "change": 1.10752688172043 + }, + { + "link": "https://www.nature.com/articles/s41587-019-0068-4", + "clicks": 7, + "change": -0.4252199413489737 + }, + { + "link": "https://www.nature.com/articles/s41586-019-1373-2", + "clicks": 7, + "change": 5.32258064516129 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 7, + "change": 1.10752688172043 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/b4b58102-d03b-47b9-93b1-ed419b042de7.h5ad", + "clicks": 7, + "change": -0.3677419354838709 + }, + { + "link": "https://doi.org/10.1038/s41586-023-05915-x", + "clicks": 7, + "change": 0.053763440860215006 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2021.09.28.462103v1", + "clicks": 7, + "change": 0.2645161290322582 + }, + { + "link": "https://europepmc.org/abstract/MED/27667667", + "clicks": 7, + "change": 5.32258064516129 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/3c1f80cc-485", + "clicks": 7, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41593-020-00794-1", + "clicks": 7, + "change": 5.32258064516129 + }, + { + "link": "https://doi.org/10.1016/j.cell.2025.02.017", + "clicks": 7, + "change": 0.2645161290322582 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2022.03.25.485846v2", + "clicks": 7, + "change": 0.5806451612903225 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9ab3840dc15ca5837d603d0142244b8139e4d8717ba08fa22f01157", + "clicks": 7, + "change": 5.32258064516129 + }, + { + "link": "https://doi.org/10.1101/2020.01.26.919753", + "clicks": 6, + "change": 0.35483870967741926 + }, + { + "link": "https://identifiers.org/geo:GSE162631", + "clicks": 6, + "change": 0.8064516129032258 + }, + { + "link": "https://cellxgene.cziscience.com/e/52f18bc3-52d9-487b-bf8f-f0b7aa684b09.cxg/", + "clicks": 6, + "change": 0.08387096774193559 + }, + { + "link": "https://www.nature.com/articles/s41590-019-0398-x", + "clicks": 6, + "change": 4.419354838709677 + }, + { + "link": "https://www.nature.com/articles/s41467-019-10291-0.pdf?origin=ppub", + "clicks": 6, + "change": null + }, + { + "link": "https://duos.org/dataset/DUOS-000661", + "clicks": 6, + "change": 1.7096774193548385 + }, + { + "link": "https://cellxgene.cziscience.com/collections/44531dd9-1388-4416-a117-af0a99de2294", + "clicks": 6, + "change": 4.419354838709677 + }, + { + "link": "https://doi.org/10.1016/j.kint.2021.11.031", + "clicks": 6, + "change": 1.7096774193548385 + }, + { + "link": "https://identifiers.org/geo:GSE137029", + "clicks": 6, + "change": -0.3978494623655914 + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S1535610821005602", + "clicks": 6, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0518361d0bfd5ea50bff9f3f5334b9db3385cbe9eb25bea90472c4d", + "clicks": 6, + "change": 1.7096774193548385 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8d9bbee0e4d937c3e565b516654fc1ae9e4f4f2b4047696ad1efb75", + "clicks": 6, + "change": 4.419354838709677 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/055f9f2842412114f22e53fd38bfbb8a4b9e54ac4d08af0eaff5d35", + "clicks": 6, + "change": null + }, + { + "link": "https://doi.org/10.1126/science.abf3041", + "clicks": 6, + "change": 0.08387096774193559 + }, + { + "link": "https://identifiers.org/geo:GSE196830", + "clicks": 6, + "change": -0.32258064516129037 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/035cf2228a2f19f8aa02cc7a6f81404187c88a894e93ba958abd4b6", + "clicks": 6, + "change": 4.419354838709677 + }, + { + "link": "https://identifiers.org/geo:GSE185477", + "clicks": 6, + "change": 4.419354838709677 + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001001755", + "clicks": 6, + "change": null + }, + { + "link": "https://github.com/HumanCellAtlas", + "clicks": 5, + "change": 1.258064516129032 + }, + { + "link": "https://talk2data.bioturing.com/?tab=studies&version_id=hca¶ms=N4IgbgpgTgzglgewHYgFwgBYGMCGIC%2B", + "clicks": 5, + "change": -0.435483870967742 + }, + { + "link": "https://doi.org/10.1126/science.adf6812", + "clicks": 5, + "change": 3.516129032258064 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0cdc62df163694e3019cfb3f2326e5338d41cf9657ad77cf1b641b6", + "clicks": 5, + "change": 3.516129032258064 + }, + { + "link": "https://www.nature.com/articles/s41698-022-00251-1#Sec9", + "clicks": 5, + "change": 1.258064516129032 + }, + { + "link": "https://doi.org/10.1038/s41586-023-06252-9", + "clicks": 5, + "change": 1.258064516129032 + }, + { + "link": "https://doi.org/10.1101/2024.02.02.578633", + "clicks": 5, + "change": 0.5053763440860215 + }, + { + "link": "https://identifiers.org/geo:GSE210077", + "clicks": 5, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41586-020-2922-4", + "clicks": 5, + "change": -0.5483870967741935 + }, + { + "link": "https://doi.org/10.1101/2020.06.30.174391", + "clicks": 5, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1016/j.xgen.2023.100298", + "clicks": 5, + "change": -0.4982078853046594 + }, + { + "link": "https://identifiers.org/geo:GSE136831", + "clicks": 5, + "change": -0.3548387096774194 + }, + { + "link": "https://doi.org/10.1158/2159-8290.cd-21-0683", + "clicks": 5, + "change": 0.5053763440860215 + }, + { + "link": "https://doi.org/10.1016/j.immuni.2023.01.002", + "clicks": 5, + "change": -0.435483870967742 + }, + { + "link": "https://doi.org/10.1038/s41556-023-01108-w", + "clicks": 5, + "change": -0.24731182795698925 + }, + { + "link": "https://github.com/chanzuckerberg/single-cell-curation/blob/main/schema/3.1.0/schema.md", + "clicks": 5, + "change": 1.258064516129032 + }, + { + "link": "https://cellxgene.cziscience.com/e/52ea546e-9229-40ef-b048-a2e694dd73e8.cxg/", + "clicks": 5, + "change": 3.516129032258064 + }, + { + "link": "https://cellxgene.cziscience.com/collections/de379e5f-52d0-498c-9801-0f850823c847", + "clicks": 5, + "change": 0.5053763440860215 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9ee56230d05989eda33c5ec9a787a7931acf22b11c3ec85e83810ae", + "clicks": 5, + "change": 0.12903225806451601 + }, + { + "link": "https://cellxgene.cziscience.com/collections/436154da-bcf1-4130-9c8b-120ff9a888f2", + "clicks": 5, + "change": -0.5483870967741935 + }, + { + "link": "https://insight.jci.org/articles/view/150861", + "clicks": 5, + "change": -0.3548387096774194 + }, + { + "link": "https://api.cellxgene.cziscience.com/curation/ui/#/", + "clicks": 5, + "change": 1.258064516129032 + }, + { + "link": "https://cellxgene.cziscience.com/e/f5a04dff-d394-4023-8811-65494e8bb11d.cxg/", + "clicks": 5, + "change": 0.12903225806451601 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0a4962a783b3df17ad72bb10564c16067b7614b6932eee67f5f13ea", + "clicks": 5, + "change": 1.258064516129032 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0a6eb6be023e730280870e9726457d8e60497dc873e8c0960c081be", + "clicks": 5, + "change": 1.258064516129032 + }, + { + "link": "https://identifiers.org/geo:GSE205013", + "clicks": 5, + "change": 1.258064516129032 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2022.02.14.480397v1", + "clicks": 5, + "change": 1.258064516129032 + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001002649", + "clicks": 5, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-9543", + "clicks": 5, + "change": 1.258064516129032 + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001004344", + "clicks": 5, + "change": 3.516129032258064 + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S2666979X22000751", + "clicks": 5, + "change": -0.24731182795698925 + }, + { + "link": "https://cellxgene.cziscience.com/e/975fd2d3-1982-47a1-9ef7-8cde3345f219.cxg/", + "clicks": 4, + "change": -0.3978494623655914 + }, + { + "link": "http://sea-ad.org/", + "clicks": 4, + "change": 0.8064516129032258 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/2feafdd8-6e9b-47e3-b51b-ea10d0eca67d.h5ad", + "clicks": 4, + "change": 0.20430107526881724 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/e26c99e1-97d2-4636-b1d4-b1640a4c3248.h5ad", + "clicks": 4, + "change": 0.8064516129032258 + }, + { + "link": "https://cellxgene.cziscience.com/e/3a805b8d-c9d8-4c9b-881f-0eefa635974d.cxg/", + "clicks": 4, + "change": -0.5985663082437276 + }, + { + "link": "https://data.humancellatlas.org/privacy", + "clicks": 4, + "change": -0.4838709677419355 + }, + { + "link": "https://tabula-sapiens-portal.ds.czbiohub.org/home", + "clicks": 4, + "change": -0.09677419354838712 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2021.07.19.452956v2.full", + "clicks": 4, + "change": -0.5483870967741935 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2024.02.05.578886v1", + "clicks": 4, + "change": -0.2774193548387096 + }, + { + "link": "https://doi.org/10.1101/2023.11.07.566105", + "clicks": 4, + "change": -0.09677419354838712 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6197289/", + "clicks": 4, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE299043", + "clicks": 4, + "change": -0.2774193548387096 + }, + { + "link": "https://journals.biologists.com/dev/article/148/15/dev199711/271192/Single-cell-transcriptome-profil", + "clicks": 4, + "change": 0.20430107526881724 + }, + { + "link": "https://www.cell.com/cell/fulltext/S0092-8674(20)30994-6?_returnURL=https%3A%2F%2Flinkinghub.elsevie", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://doi.org/10.15252/embj.2020107333", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://doi.org/10.1016/j.immuni.2023.10.013", + "clicks": 4, + "change": -0.3978494623655914 + }, + { + "link": "https://doi.org/10.1002/hep4.1854", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S1534580720308777?via%3Dihub#!", + "clicks": 4, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1126/science.abf1970", + "clicks": 4, + "change": -0.6387096774193548 + }, + { + "link": "https://identifiers.org/geo:GSE156793", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/bdf4529a-c3b", + "clicks": 4, + "change": null + }, + { + "link": "https://doi.org/10.1053/j.gastro.2020.11.010", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://www.nature.com/articles/s41586-019-1631-3", + "clicks": 4, + "change": -0.2774193548387096 + }, + { + "link": "https://doi.org/10.1164/rccm.201712-2410oc", + "clicks": 4, + "change": 0.8064516129032258 + }, + { + "link": "https://doi.org/10.1101/2021.11.30.470583", + "clicks": 4, + "change": -0.4838709677419355 + }, + { + "link": "https://identifiers.org/geo:GSE157329", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://celltype.info/project/336/dataset/591", + "clicks": 4, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://cellxgene.cziscience.com/e/c4b03352-af8d-492a-8d6b-40f304e0a122.cxg/", + "clicks": 4, + "change": 0.8064516129032258 + }, + { + "link": "https://github.com/chanzuckerberg/single-cell-curation/blob/main/schema/3.1.0/schema.md", + "clicks": 4, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a7e47e0c24e1b50d1bddd0a3900c6c84de667d611ec204ca851f188", + "clicks": 4, + "change": 0.20430107526881724 + }, + { + "link": "https://identifiers.org/geo:GSE182270", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://doi.org/10.1016/j.celrep.2020.108525", + "clicks": 4, + "change": 0.20430107526881724 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8f091a91c51f4c91c2f05adda63672084facadf1bdf88e7dfc0eb50", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://duos.org/dataset/DUOS-000258", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8315026/", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC9925748/", + "clicks": 4, + "change": 0.8064516129032258 + }, + { + "link": "https://descartes.brotmanbaty.org/bbi/human-gene-expression-during-development/", + "clicks": 4, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE130148", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://identifiers.org/biostudies:S-SUBS12", + "clicks": 4, + "change": -0.5483870967741935 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f92324b8a8d72201f56226600d6e934103a08db008e83764b237c31", + "clicks": 4, + "change": null + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S2211124719313245", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://identifiers.org/geo:GSE121611", + "clicks": 4, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections/ba84c7ba-8d8c-4720-a76e-3ee37dc89f0b", + "clicks": 4, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41467-021-23355-x", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://doi.org/10.1038/s41586-022-05060-x", + "clicks": 4, + "change": -0.5483870967741935 + }, + { + "link": "https://github.com/saezlab/visium_heart", + "clicks": 4, + "change": -0.4838709677419355 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a3bb201fd2ac64864e2be99fa76160e7b3c181399b16f40988ffa49", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://doi.org/10.1016/j.cell.2022.01.012", + "clicks": 4, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41586-018-0590-4", + "clicks": 4, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-10386", + "clicks": 4, + "change": 2.6129032258064515 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-9532", + "clicks": 4, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-9533", + "clicks": 4, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-9536", + "clicks": 4, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2a817cd9113ed55cddcacf0c5b591de3e62f190c3005a341117eb56", + "clicks": 4, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/74254ff7c287c68c96ff99be3ed21112406a044b79ba8dbd07bcbc0", + "clicks": 4, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e92edf96f7fe48467ea57c616935ad0ebd1cb7ad5c114534e535afe", + "clicks": 4, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 3, + "change": -0.6129032258064516 + }, + { + "link": "https://celltype.info/", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://cellxgene.cziscience.com/e/547b47fa-d4e4-439e-bace-5b3b0f45fa23.cxg/", + "clicks": 3, + "change": -0.32258064516129037 + }, + { + "link": "https://cellxgene.cziscience.com/e/95ce06a0-7de9-4ab2-bcd1-a6625f55e7e3.cxg/", + "clicks": 3, + "change": -0.5483870967741935 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/ab675437-97bc-499c-a4ee-977a6bd414ec.h5ad", + "clicks": 3, + "change": -0.4580645161290322 + }, + { + "link": "https://cellxgene.cziscience.com/e/bdb26abd-f4ba-4ea3-8862-c2340e7a4f55.cxg/", + "clicks": 3, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/e4710a02-8abc-48d5-a3e8-9ae7e9d79bdb.cxg/", + "clicks": 3, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/5346f9c6-755e-4336-94cc-38706ec00c2f.cxg/", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://cellxgene.cziscience.com/e/a5d5c529-8a1f-40b5-bda3-35208970070d.cxg/", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://www.nature.com/articles/s41593-020-0621-y#Sec13", + "clicks": 3, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/03b11ecc8835c07e37a8155b4a534e2d8c8a43249a017bd89f7c55b", + "clicks": 3, + "change": 0.35483870967741926 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3e7adbfe4e3e5726312f0de1f5dc4115bedd781c30be1b56bc81a40", + "clicks": 3, + "change": 0.35483870967741926 + }, + { + "link": "https://doi.org/10.1186/s13059-023-03111-8", + "clicks": 3, + "change": -0.32258064516129037 + }, + { + "link": "https://doi.org/10.1101/2024.09.10.612293", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://doi.org/10.1038/s41556-022-00961-5", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7c6664ce2ba11ce14727880642fbc24fc04be0835335f8b97a0daff", + "clicks": 3, + "change": 0.35483870967741926 + }, + { + "link": "https://identifiers.org/geo:GSE159929", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/34003804/", + "clicks": 3, + "change": -0.32258064516129037 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8809252/", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC9092724/", + "clicks": 3, + "change": -0.6612903225806452 + }, + { + "link": "https://doi.org/10.1126/sciimmunol.abl9165", + "clicks": 3, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE160756", + "clicks": 3, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/a793e7c7-e69", + "clicks": 3, + "change": null + }, + { + "link": "https://doi.org/10.1186/s12943-021-01419-2", + "clicks": 3, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections/131c68c1-c457-4e3b-88bc-92c4e43ed680", + "clicks": 3, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/42ed840feb62aec786f092a18ea8c0cb88d07f919df207cc8f12dc2", + "clicks": 3, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41586-022-04521-7", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE156905", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE169285", + "clicks": 3, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1038/s41588-022-01243-4", + "clicks": 3, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE226108", + "clicks": 3, + "change": -0.4580645161290322 + }, + { + "link": "https://identifiers.org/geo:GSE174188", + "clicks": 3, + "change": -0.6612903225806452 + }, + { + "link": "https://zenodo.org/record/4724043#.YldFAW7MJuU", + "clicks": 3, + "change": -0.5483870967741935 + }, + { + "link": "http://singlecell.charite.de/pancreas", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/32832599/", + "clicks": 3, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/geo:GSE184462", + "clicks": 3, + "change": 0.35483870967741926 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-8142", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8a6ad405db308a569c186a953ee2d856cd018db7a44bb3a4f9b9607", + "clicks": 3, + "change": null + }, + { + "link": "https://doi.org/10.1101/2022.10.24.513598", + "clicks": 3, + "change": -0.32258064516129037 + }, + { + "link": "https://cellxgene.cziscience.com/collections/ced320a1-29f3-47c1-a735-513c7084d508", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/83fc7232-faa", + "clicks": 3, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41586-018-0698-6", + "clicks": 3, + "change": -0.32258064516129037 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/dc0fcd8d-d827-459e-893d-6d4cc92d3488.h5ad", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE131907", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/biostudies:S-SUBS8", + "clicks": 3, + "change": -0.4580645161290322 + }, + { + "link": "https://identifiers.org/geo:GSE192740", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP499089", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://doi.org/10.1016/j.devcel.2020.07.023", + "clicks": 3, + "change": null + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/31402260/", + "clicks": 3, + "change": -0.5483870967741935 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8025672/", + "clicks": 3, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1038/s41586-021-03710-0", + "clicks": 3, + "change": 1.7096774193548385 + }, + { + "link": "https://doi.org/10.1038/ncomms14049", + "clicks": 3, + "change": 0.35483870967741926 + }, + { + "link": "https://www.nature.com/articles/s41598-017-14676-3", + "clicks": 3, + "change": null + }, + { + "link": "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE81nnn/GSE81608/suppl/GSE81608_human_islets_rpkm.txt.gz", + "clicks": 3, + "change": 0.35483870967741926 + }, + { + "link": "https://identifiers.org/geo:GSE161529", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:ERP120466", + "clicks": 3, + "change": 0.35483870967741926 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2e3d7650b94774f1f4620d6cc6bbd6caa117166f87574d5dd96e596", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001004107", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE148073", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE121380", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-11536", + "clicks": 3, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2635fdbf8b5587d568f3b30c64abcc35e7b1a5a6d909d68516806fc", + "clicks": 3, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b11324dabf1a78a77240b514476300f44e13ea8d90a76fa5ef0343e", + "clicks": 3, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c9c07451e9720058b19f15b58b07a5f7b520ebb99d09257e4d4cd2e", + "clicks": 3, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4c7f2265de367b56623a7b9b491ec008c2822ab0f30db7487b77503", + "clicks": 3, + "change": null + }, + { + "link": "https://app.terra.bio/#import-data?format=PFB&url=https%3A%2F%2Fs3.amazonaws.com%2Fedu-ucsc-gi-platf", + "clicks": 3, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/19c838b5-cf3", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE178265", + "clicks": 3, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/bc844bf8-944", + "clicks": 3, + "change": null + }, + { + "link": "https://www.humancellatlas.org/", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://docs.google.com/spreadsheets/d/13oqRLh1awe7bClpX617_HQaoS8XPZV5JKPtPEff8-p4/edit?gid=1404414", + "clicks": 2, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/459dc9de-9ab8-4e4d-ac44-182595b1c18b.cxg/", + "clicks": 2, + "change": -0.3978494623655914 + }, + { + "link": "https://cellxgene.cziscience.com/e/e404d417-56e4-40a5-b3c6-69e9f92d8cbd.cxg/", + "clicks": 2, + "change": -0.6387096774193548 + }, + { + "link": "https://www.researchsquare.com/article/rs-3471275/v1", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://api.cellxgene.cziscience.com/curation/ui/#/", + "clicks": 2, + "change": -0.6387096774193548 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2023.07.30.551145v1", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/0ee5ae70-c3f5-473f-bd1c-287f4690ffc5.cxg/", + "clicks": 2, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/182f6a56-7360-4924-a74e-1772e07b3031.cxg/", + "clicks": 2, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/18500fcd-9960-49cb-8a8e-7d868dc14efe.cxg/", + "clicks": 2, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/7a0a8891-9a22-4549-a55b-c2aca23c3a2a.cxg/", + "clicks": 2, + "change": -0.7419354838709677 + }, + { + "link": "https://cellxgene.cziscience.com/e/98113e7e-f586-4065-a26a-60aa702f8d1c.cxg/", + "clicks": 2, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/c202b243-1aa1-4b16-bc9a-b36241f3b1e3.cxg/", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://cellxgene.cziscience.com/e/ca20e2ac-5676-4158-b5d0-0c2b15898b19.cxg/", + "clicks": 2, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/e1f595f6-ba2c-495e-9bee-7056f116b1e4.cxg/", + "clicks": 2, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/f9034091-2e8f-4ac6-9874-e7b7eb566824.cxg/", + "clicks": 2, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/0c00d42b-d4cb-4109-8155-b7affab339ae.h5ad", + "clicks": 2, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/4d692133-9a2e-4ef6-8ebe-63ca360f28f0.h5ad", + "clicks": 2, + "change": -0.5483870967741935 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/523ecde0-b191-4d25-b6cb-4ff0b8caea14.h5ad", + "clicks": 2, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/5cfe2ee0-d62a-487c-b0fe-124f39f4df21.h5ad", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/afd497b6-4a5f-4132-9e29-3dba660b7038.h5ad", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://cellxgene.cziscience.com/e/9c63201d-bfd9-41a8-bbbc-18d947556f3d.cxg/", + "clicks": 2, + "change": null + }, + { + "link": "https://github.com/AllenInstitute/human_cross_areal", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://cellxgene.cziscience.com/collections/6282a908-f162-44a2-99a3-8a942e4271b2", + "clicks": 2, + "change": -0.3978494623655914 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/83b34db4-0319-44ee-b81d-815e3005be30.h5ad", + "clicks": 2, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/aea3d8eb-82a7-4479-b902-3cca4c9300ee.h5ad", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 2, + "change": null + }, + { + "link": "https://data.humancellatlas.org/privacy", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d3db0452c216f435f155f7d6b95ec868ad687ccb5103ed8a2517dd9", + "clicks": 2, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41586-021-03929-x", + "clicks": 2, + "change": -0.3978494623655914 + }, + { + "link": "https://doi.org/10.1161/circulationaha.120.046528", + "clicks": 2, + "change": null + }, + { + "link": "https://science.sciencemag.org/content/361/6409/1380", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41467-020-16164-1", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4ee2651e0b3531e58ac08647ad9ce14855c549ac404bbe846192de5", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1126/science.abl4896", + "clicks": 2, + "change": -0.7741935483870968 + }, + { + "link": "https://doi.org/10.35079/HBM692.JRZB.356", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41467-020-15647-5", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/geo:GSE236566", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.jaci.2020.03.041", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001004561", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE104827", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/geo:GSE188255", + "clicks": 2, + "change": null + }, + { + "link": "https://db.cngb.org/search/project/CNP0000325/", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/geo:GSE195665", + "clicks": 2, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1bb63e5a45e38fc3a8121e93a851dbebe3120be503afa4f3c7b4835", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8bf8f0b8020e752c04680ea54d04402dc4d0344727d5a9a8031995f", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ba263a9420594e3da70bfc318a2f085d7eaa245edaea1fd8d28c3aa", + "clicks": 2, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/4f81fb0f-2ed", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE130473", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE179640", + "clicks": 2, + "change": null + }, + { + "link": "https://immunogenomics.io/ampsle;%20https://immunogenomics.io/cellbrowser/;%20https://portals.broadi", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/3765ffb0-b95", + "clicks": 2, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41597-019-0351-8", + "clicks": 2, + "change": -0.6387096774193548 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2021.04.04.438388v2.full", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://cellxgene.cziscience.com/collections/ced320a1-29f3-47c1-a735-513c7084d508", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA670909", + "clicks": 2, + "change": null + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7720616/", + "clicks": 2, + "change": -0.6387096774193548 + }, + { + "link": "https://identifiers.org/geo:GSE111976", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4c78cbe636002769c879c8c5278620d2b95eebaf83ad252596b2de1", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a12ded83bf7bcdea94c86d368ecd1d483df83a046cb963cc0cb449d", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.jhep.2024.02.017", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://academic.oup.com/hmg/article/30/5/370/6131713#246275149", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/geo:GSE164378", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41467-022-32972-z", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/geo:GSE171213", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/ena.embl:ERP120138", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/68eec1f5e8f89b03c00c12c430a4e283cb0f39b9ca33c3a59c664f2", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.celrep.2022.110467", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/253c004bc83944279d9a276703d5889d27d0080a33cc420a39e64d5", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE115469", + "clicks": 2, + "change": -0.6387096774193548 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a6f14677a4bab2f5e846bf5eb333819a212ae8e13756eeb1bf02725", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 2, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41586-019-1127-1", + "clicks": 2, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/4fafc44b-ee1", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41467-021-22164-6", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE157477", + "clicks": 2, + "change": null + }, + { + "link": "https://www.biorxiv.org/content/10.1101/459891v1", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/40fdbe585816a711826d3d0075a83c89304c5df0dbb3b20f2a9173c", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE128033", + "clicks": 2, + "change": null + }, + { + "link": "https://hlca.ds.czbiohub.org/", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://doi.org/10.1016/j.cell.2021.08.003", + "clicks": 2, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/geo:GSE185224", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/35176508/", + "clicks": 2, + "change": -0.3978494623655914 + }, + { + "link": "https://identifiers.org/geo:GSE157783", + "clicks": 2, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections/ced320a1-29f3-47c1-a735-513c7084d508", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1101/721258", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE202109", + "clicks": 2, + "change": null + }, + { + "link": "https://www.cell.com/cell/fulltext/S0092-8674(22)01258-2", + "clicks": 2, + "change": -0.3978494623655914 + }, + { + "link": "https://doi.org/10.1101/2023.03.17.533161", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://github.com/klarman-cell-observatory/ens_atlas", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://singlecell.broadinstitute.org/single_cell/study/SCP1038/the-human-and-mouse-enteric-nervous-", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1038/s41591-024-03011-9", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/dbgap:phs001908", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/49d8a826d90f2362c12d7be27b28c2bf1d35b2675077b3922de59e4", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://doi.org/10.1016/j.jid.2019.07.726", + "clicks": 2, + "change": -0.5483870967741935 + }, + { + "link": "https://doi.org/10.1016/j.ccell.2022.11.001", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://doi.org/10.1016/j.celrep.2018.09.006", + "clicks": 2, + "change": null + }, + { + "link": "https://bigd.big.ac.cn/aging/landscape?project=Human_Skin", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/biostudies:S-SUBS17", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:ERP136992", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2b792c73e11efec043565755dc1ca3732d9df9fc8debade3a2a0e47", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/649c45bd2f01b028c974c7e2a9604b9cf564d8afcf528eb299eaf3d", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c90c9c9f881db7db036dc159f06bdafb1563bbcbbaf4d6a4e0e4fb0", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41591-019-0733-7", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA564301", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/ena.embl:SRP220690", + "clicks": 2, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections/c9706a92-0e5f-46c1-96d8-20e42467f287", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.xcrm.2021.100219", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA692423", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE164898", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE130646", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://www.nature.com/articles/nature25980", + "clicks": 2, + "change": -0.6387096774193548 + }, + { + "link": "http://www.kidneycellatlas.org/", + "clicks": 2, + "change": -0.3978494623655914 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a3d6b52d241b0656de49853b0150badca1c294ee180cc900a866e10", + "clicks": 2, + "change": -0.5483870967741935 + }, + { + "link": "https://doi.org/10.1371/journal.pbio.3002124", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:PRJEB39602", + "clicks": 2, + "change": null + }, + { + "link": "https://www.heartcellatlas.org/", + "clicks": 2, + "change": -0.6989247311827957 + }, + { + "link": "https://www.nature.com/articles/s41586-020-2797-4", + "clicks": 2, + "change": -0.3978494623655914 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/80917c4e67e581ee2696691ddd4b031bf45cbc7ba77757c8a203cd8", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/5243b537-e4f", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41586-023-05869-0", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1101/2025.10.19.683341", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://doi.org/10.1111/cpr.13557", + "clicks": 2, + "change": -0.7419354838709677 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/33192286/", + "clicks": 2, + "change": -0.3978494623655914 + }, + { + "link": "https://doi.org/10.1038/s41591-019-0750-6", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE155698", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://doi.org/10.1038/s41591-019-0468-5", + "clicks": 2, + "change": -0.6989247311827957 + }, + { + "link": "https://developmentcellatlas.ncl.ac.uk/datasets/HCA_thymus/", + "clicks": 2, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/7847437a-108", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE135893", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7ebd49f961164c9c2c06ce16830caf1ff2f4ee8cb113b6282e46539", + "clicks": 2, + "change": null + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S1672022921000036", + "clicks": 2, + "change": -0.7419354838709677 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/ega.study:EGAS50000001059", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://www.nature.com/articles/s41586-019-0992-y", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://www.nature.com/articles/s41588-021-00806-1", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5afbb0fcfc85765853de68bf1b1678dc591489b5a2769571dabd2d9", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1101/2022.10.24.513487", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 2, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7c366923485a392ea167bfcf0c7a6f54fe50d07b70d9d836ade312b", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/cce9338f-e74", + "clicks": 2, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/e47cc28b-d92", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/efacc01f-533", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE81547", + "clicks": 2, + "change": null + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/31316211/", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/62d8ed9d1bad75d0f6605247547573e788dc42833d8e87f2661af41", + "clicks": 2, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/2da5dff8-8f5", + "clicks": 2, + "change": null + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8099483/", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://github.com/NUPulmonary/Reyfman2018", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6664d1cc8c0eb5f382b0179fd9b443cd6cb1a82bdf335d61883fb32", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6c67f88805e841c1c06a5bf6c9eccbeb034ed361248a87662a2aeb6", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a7497a4b3d254c69629493784e7b69cd3db79dc80d99ba49b879c43", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE181989", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://zenodo.org/record/6578617#.YrWmmuzMJbY", + "clicks": 2, + "change": -0.5483870967741935 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/81d29fae90cb4825e513cfe1ecfaf6d0715f2551431af7c5a4d3164", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5fde766e0115132f8b066c22eea0501cb127b1f4f346d90a2d51aa9", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.3389/fonc.2021.719564", + "clicks": 2, + "change": -0.3978494623655914 + }, + { + "link": "https://identifiers.org/geo:GSE152938", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/08b8e74de52a72c61d32b299c69ecb0c2f311b33e21dd2001cfe9b8", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b97756f3292c785d9f40538a9469058da0b556142339389be1bd057", + "clicks": 2, + "change": null + }, + { + "link": "https://github.com/prabhakarlab/AIDA_Phase1/", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/951740736bf339ff8fbd1ea926902da90dd722cddc921e4222e17d0", + "clicks": 2, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/4c90c420-c66", + "clicks": 2, + "change": null + }, + { + "link": "https://www.frontiersin.org/articles/10.3389/fcell.2020.00384/full", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA1082689", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP492825", + "clicks": 2, + "change": null + }, + { + "link": "https://genomebiology.biomedcentral.com/articles/10.1186/s13059-018-1603-1", + "clicks": 2, + "change": null + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/27667365/", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://cellxgene.cziscience.com/collections", + "clicks": 2, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/7e80b120-89cc-48d1-b226-5fadb9e2b018.h5ad", + "clicks": 2, + "change": null + }, + { + "link": "https://github.com/theislab/neural_organoid_atlas", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://talk2data.bioturing.com/?tab=studies&version_id=hca¶ms=N4IgbgpgTgzglgewHYgFwgBYGMCGIC%2B", + "clicks": 2, + "change": -0.3978494623655914 + }, + { + "link": "http://ureca-singlecell.kr/", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:ERP120467", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2a80471a6b70d03ae127c715626c2d62c90e5b840aa7c6b6550a0ae", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/43f1394df4228211c155d0dcb7dbbb03287983bbd77c64c43ca13c3", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/739bcef4e64b63c97886feb5cdd28df6284a5740aa7d1658f65cd4b", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/751c144f934d617e133bbea5cec24f84d760cb2c52bd1e390792591", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7a1208f9274378cb54a3b7174aa45f0796c3eff7dc04bcb28cdd310", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7c09f39eca39f848577035ae9710fcfa139cb6043c68d88603b25cc", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/82c798df3f33d27fe553dfb1562fb001e9a3c49881f13fbc7cb9cd4", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/90ae9ac832ffd4fb5645be6dc34765fdd6950a53016c290d9ac7648", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/96b278b50acc88adb3f7b6b820ca1bf39fb6da48fb6d47184c5aadd", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9dbb83e8d8b3b6293d21475788643df1890cabe11d3966f76be48a8", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a4c0cc6cbebd83a666c5ad83608c5339b9147cecc8d04c356bf9dad", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/aa9415d570595a3fbbf0ce48de15a638f10abcc4fa2f0e4b3cb7f4f", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/aaaef1544cb208650d4aaed52e0ba91962abb1b92c149036edf732e", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b5978064f789917b96314768cdd77b1b8e0142eb4fdc03aa95f4953", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/baa2a5a636fd5acb36cbd517aceeb678dd9f31da5b52f5a05cc4992", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/bf8a63d7b4f0781741fd2e7326178eae14cbc4ccb8621420f3bdd94", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e8405f8ad44b77a9f2a0565d24f67f6497cf2e92ed7b0bcd27b6c55", + "clicks": 2, + "change": null + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2022.05.18.492547v1.full", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/114ce0c29152aa1a4bf574031e71607cb16938107027e60fcad8f35", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5797d06581526438dd47647e284d9550e4d69096a7f4542bf7ab9d8", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e4b3dd1bd9de700eea4810aa1e886dd3143426169cb7b909990017c", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP162461", + "clicks": 2, + "change": null + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/pmid/30402542/", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c66373edc733e321b92e895e3f4740b909e68beb5abd3f9d46fd1af", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c27628641f617b63de618e855540fcf49e1419394e32c2fd20af839", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE148077", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.jaci.2021.07.025", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE200997", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6764b048fc44a3919e110b5a4186bc5a7e3319d133bf433374ccf60", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.cell.2021.11.031", + "clicks": 2, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41421-020-0157-z", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3e9ab8a6b4ef805470c1c41881a4fd65732d78668e3c0c121080c2e", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/collections/5900dda8-2dc3-4770-b604-084eac1c2c82", + "clicks": 2, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a698fb66875f9f5c2c19a83bd95193d2cef39168436495505041941", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/65330974f4a80e9b25a202e57b15179b9e4172a4aaa3631508e2757", + "clicks": 2, + "change": null + }, + { + "link": "https://www.cell.com/cell-metabolism/pdf/S1550-4131(16)30434-X.pdf", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1096/fj.202300601RRR", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/geo:GSE165839", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/geo:GSE124395", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e86774142865799cc6ff709705ae76c4d02116657f5fdec8f9e05c6", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.15252/msb.20209682", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/geo:GSE130977", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3b47f3e9307068561ef834a0833e238d2e83c6a7e769021c7cc977e", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/bdcfda2038f54f8c1e0d933768858374354d0bd38d0d085b7890716", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ff6575f68bb35bc6178c143fefef34dabe5e8a85454a4a06fe42453", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3c0225ee89aeb08e63293b734e98aff5d89ae480216a768ab3c351a", + "clicks": 2, + "change": null + }, + { + "link": "https://duos.org/dataset/DUOS-000465", + "clicks": 2, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/7e52735a-30a", + "clicks": 2, + "change": null + }, + { + "link": "https://science.sciencemag.org/content/371/6527/eaba6500", + "clicks": 2, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 2, + "change": null + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5287227/", + "clicks": 2, + "change": null + }, + { + "link": "https://data.humancellatlas.org/", + "clicks": 2, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ac09198b7acf05c28ca9baa4fc20cd8c6e39fd797e6d321b42b4fdf", + "clicks": 2, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.celrep.2018.02.003", + "clicks": 2, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/5e4090c7-98d", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE168652", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/3498fcc1-21e", + "clicks": 2, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE281356", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2651ad3e2070015bbd1984bf17463e5f030e4385d871effdc7aa593", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f1179a2d5551bed99646477a3e0c5531a12758f46c0d7f53c5edd7c", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/aee41c98-2ff", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/042abbc208a9c9cfa6e76e895656f7fe4f351e79acdd65c41d494c9", + "clicks": 2, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA807386", + "clicks": 2, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/ena.embl:SRP359840", + "clicks": 2, + "change": -0.5483870967741935 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 2, + "change": null + }, + { + "link": "https://developmentcellatlas.ncl.ac.uk/datasets/hca_liver/", + "clicks": 2, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/399f7dd66c4c60689fafad91323f7e03902ccba808a2bb01bb80746", + "clicks": 2, + "change": null + }, + { + "link": "https://anndata.readthedocs.io/en/latest/index.html", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections", + "clicks": 1, + "change": null + }, + { + "link": "https://celltype.info/", + "clicks": 1, + "change": null + }, + { + "link": "https://www.linkedin.com/company/human-cell-atlas", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/32d553e9-dee", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/4534c905-e94", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/f5427746-90f", + "clicks": 1, + "change": null + }, + { + "link": "https://app.terra.bio/#import-data?format=PFB&url=https%3A%2F%2Fs3.amazonaws.com%2Fedu-ucsc-gi-platf", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1227c74da5ed6c0ae885a33c5e9ec933e739a54fdd503a4d460fe57", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2cf6fe5a2414698f7a3dd4dc0b36b71dbb7eb61312145a14874405f", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/406fcd8e025fb0b7d83a059484b14382aa6a8869aa560970c993cef", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/77e601c43c86e1d2773861fd7a6b9fbb5d5b92a4357930fdd51eebc", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ba089d1dc186826e84d2199d1eb6942c35eb8fb70e7a5d2b20650b7", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e06b9bfabba4569ca405e99cad5beea183e429d01801b09d999da23", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e5f8696a2cd385f8a15b57ca799472560a748027c278a528952e58b", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ebd6ca0ac27172b9a81c4700aa124294359d17561b9f95e1b39b3dc", + "clicks": 1, + "change": null + }, + { + "link": "https://github.com/HumanCellAtlas", + "clicks": 1, + "change": null + }, + { + "link": "https://github.com/HumanCellAtlas/metadata-schema", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.humancellatlas.org/biological-networks/", + "clicks": 1, + "change": null + }, + { + "link": "https://support.terra.bio/hc/en-us/sections/4407099323675-Terra-Data-Repository", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://broadinstitute.github.io/warp/docs/Pipelines/Smart-seq2_Multi_Sample_Pipeline/Loom_schema", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://www.humancellatlas.org/", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/12c0bcd3-fa5b-4b91-bc56-7828ad3af719.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/d394204c-dc6f-4c82-ae66-c6d00addbf43.h5ad", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/d7b2cb5a-f09d-4a9d-8759-ff1e5da5c5ba.h5ad", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/0325478a-9b52-45b5-b40a-2e2ab0d72eb1.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/03d38670-1444-4001-bc53-9936e61d9b20.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/07b1d7c8-5c2e-42f7-9246-26f746cd6013.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/090da8ea-46e8-40df-bffc-1f78e1538d27.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/0d7f4c06-a6bd-47d2-a42b-3a7196704f77.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/2185eb07-22e2-4209-b3c8-7111afc6aa90.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/2190bd4d-3be0-4bf7-8ca8-8d6f71228936.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/35c8a04c-8639-4d15-8228-765d8d93fc96.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/43b7e156-65b3-4a7b-8c7a-08528e4b21d0.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/46ff9dc2-3d87-4b36-91aa-ffa8aa13c52e.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/470565f2-5afc-456a-b617-18e4496c04fd.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/529bb209-9d7b-44da-bfa4-f6e4745c46c2.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/5bc23cb2-8cfc-4960-bab1-c3027fbeefc4.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/639ffc23-14db-4060-9027-3c90314200f8.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/64f4ad90-a422-400a-944d-4ce0f39594a7.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/6dafb698-7a53-4699-ad13-1b5e2c164be7.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/6ed0bb6c-a9e3-4ba6-9436-7c8fd4e206f0.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/7cd3c321-e487-4b51-a8af-9bf671b59fe5.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/8f48c031-6692-4c82-b6c2-e4ad35cbc0aa.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/949ec7fc-ac54-47c9-bb6f-ee9e67688cce.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/9ec34295-ab16-47e2-af33-b884143e520b.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/a56f1a6b-071c-4780-9832-33ca9b8fb391.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/a84face4-eb30-4f43-994f-c6a13a097808.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/acae7679-d077-461c-b857-ee6ccfeb267f.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/cfa755c1-48c5-4336-94f4-aa95eca4fbd5.cxg/", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://cellxgene.cziscience.com/e/d2514440-d747-4d8d-b2c7-b58ef8b71fbe.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/d288b10a-643e-44bd-b451-96e9588b2ee5.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/d2b5efc1-14c6-4b5f-bd98-40f9084872d7.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/d582f63a-3c88-4e38-8cd3-8682dbe40f64.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/f20f44ef-a0d4-4d94-87de-037fd47141f0.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/fe1a73ab-a203-45fd-84e9-0f7fd19efcbd.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/092e1356-9f70-472c-9602-cf138d73004a.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/0d1a2ad9-a390-47a0-8787-5cd48db3a86d.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/14315534-22cd-42d7-a30d-748bae2b6dc6.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/1ba132b2-3315-4b1f-ae3b-f00697de1179.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/3e44aa82-b4b1-4bea-b9b6-ff4d673dd5a8.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/589c049b-0ee0-4acd-9d2f-3b678ef42bc6.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/7cae1be1-1fa1-4e53-b2a5-e192706c6f03.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/89d2f7b4-b9d1-444e-8c58-74137a909bd5.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/94c80f66-5bb6-44c5-a84d-024bf997c0de.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/9fddd586-fb1a-476c-b883-918cbea92d41.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/9ffc1e1c-a136-44f4-b467-9f9a2823e80e.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/b272a636-2e46-4713-87b9-1cb1c4e1cce7.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/bc4ab68d-0d9a-4def-ac09-5b696d35e0de.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/c44f4162-9a66-44cb-a642-a9380c55de8f.h5ad", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/cd314393-adec-4c7a-9a24-efe364debbf9.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/d8accf67-e488-42b8-9c1c-5bde1b2a7011.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/da177c52-10be-4e77-abe0-6c90bd4f7d82.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/f9fdda20-d54a-433b-816c-e1b6ebfe069d.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections/d17249d2-0e6e-4500-abb8-e6c93fa1ac6f", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/015c230d-650c-4527-870d-8a805849a382.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/5bdc423a-59e6-457d-aa01-debd2c9c564f.cxg/", + "clicks": 1, + "change": -0.7741935483870968 + }, + { + "link": "https://cellxgene.cziscience.com/e/716a4acc-919e-4326-9672-ebe06ede84e6.cxg/", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://cellxgene.cziscience.com/e/8d1dd010-5cbc-43fb-83f8-e0de8e8517da.cxg/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/e/d01c9dff-abd1-4825-bf30-2eb2ba74597e.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/e2808a6e-e2ea-41b9-b38c-4a08f1677f02.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/e/f5b0810c-1664-4a62-ad06-be1d9964aa8b.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/2dd00b41-e8d4-4186-b020-bdd5a427a78b.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/686fa217-bac7-49e7-a663-74ff1b9e94c8.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/bb5da5be-a640-4d8e-b1bb-d5f4c2ee2e70.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/fc20404d-69ae-4c35-a666-ffb8e3c1b6a1.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://github.com/chanzuckerberg/single-cell-curation/blob/main/schema/3.1.0/schema.md", + "clicks": 1, + "change": null + }, + { + "link": "https://dx.doi.org/10.17504/protocols.io.bf4ajqse", + "clicks": 1, + "change": null + }, + { + "link": "https://ega-archive.org/datasets/EGAD00001006049", + "clicks": 1, + "change": null + }, + { + "link": "https://github.com/linnarsson-lab/developing-human-brain/", + "clicks": 1, + "change": null + }, + { + "link": "https://www.science.org/collections/brain-cell-census", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/9265a814-c798-45ab-a5f1-c574f46a2137.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://datasets.cellxgene.cziscience.com/c49c8589-0221-4955-b547-270f8d67d13f.h5ad", + "clicks": 1, + "change": null + }, + { + "link": "https://talk2data.bioturing.com/?tab=studies&version_id=hca¶ms=N4IgbgpgTgzglgewHYgFwgBYGMCGIC%2B", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/about", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/", + "clicks": 1, + "change": -0.8494623655913979 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41586-019-1654-9?draft=collection", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE161381", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE109564", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE114156", + "clicks": 1, + "change": null + }, + { + "link": "https://jasn.asnjournals.org/content/29/8/2069", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://cellxgene.cziscience.com/collections/7b9ae565-a781-433d-98d4-430394e7802a", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1101/2025.06.19.660575", + "clicks": 1, + "change": -0.8494623655913979 + }, + { + "link": "https://www.cell.com/fulltext/S0092-8674(16)30280-X#secsectitle0115", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/4c83043a-9fb", + "clicks": 1, + "change": null + }, + { + "link": "https://fbm.cellatlas.io/", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/5ba10ef5-c9e", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://www.tissueimmunecellatlas.org/", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f07e13af9c878f7eed9f41e4ffec91eea9eabe74b5d22eee10cbd45", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/4f624257-bb7", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/eaa0aa3e-289", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE145154", + "clicks": 1, + "change": -0.7741935483870968 + }, + { + "link": "https://link.springer.com/article/10.1007%2Fs00395-021-00897-1#Sec2", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/cc90ba35e1cf231315d15e5b59bb228caa89022af7cc579de5b0380", + "clicks": 1, + "change": null + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC9512889/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE117nnn/GSE117089/suppl/GSE117089_RAW.tar,ftp://ftp.ncbi.nlm", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE117089", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5b5ff628f7e60edd6d395649845dad331e650d2e8495b546ca7c30d", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9d017652a31a489c1f62cacc436936d48a5b07bb554fc0dbe602da7", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b44a9c6635d0b59ec66b5eb6b40b40e7292c3a75aaf8afc4f933eb0", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c55d203a57026078cecc6ec26c808419ce545e49a09c75866741c65", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE86146", + "clicks": 1, + "change": null + }, + { + "link": "https://www.cell.com/cell-stem-cell/fulltext/S1934-5909(17)30078-4?_returnURL=https%3A%2F%2Flinkingh", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1038/s41591-020-0901-9", + "clicks": 1, + "change": -0.7741935483870968 + }, + { + "link": "https://broadinstitute.github.io/warp/docs/Pipelines/Optimus_Pipeline/README/", + "clicks": 1, + "change": null + }, + { + "link": "https://github.com/dpeerlab/Palantir/", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a017d6da1b94a3f222f17bc02c24d76f0f718af10391d61e2c7c2be", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/61352484-090", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/7701a064-bbd", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE148829", + "clicks": 1, + "change": null + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6819125/", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/ena.embl:SRP132719", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE110499", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.immuni.2024.01.006", + "clicks": 1, + "change": -0.8494623655913979 + }, + { + "link": "https://doi.org/10.5281/zenodo.10373041", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.5281/zenodo.8373756", + "clicks": 1, + "change": null + }, + { + "link": "https://github.com/Single-Cell-Genomics-Group-CNAG-CRG/TonsilAtlas", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001006375", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:ERP156759", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/01ebab5c87437ce57d4fcd6816973a66b53ed2aa5e750ddac51fe1a", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0dcfcb4ddff92648fa2e62c994d57ce3e461c721901636824d2a943", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1bde798af53f78d68b4923cfe11dcad052c9175bf657a2d9e2bdc21", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1e0d4537dc00335dfe9983a34b11377f1a662a187df39823f1dc508", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2a4d54872a8b2437be2be9908ab0bd76f2e3ace260eb28d83b2340b", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/35cbea3b2d8cc2fcc366682fdc4e73a2c0427d69b8a238aaf2489ec", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/40c42e11087d38b3dbbcc4d2e40e37bbb38fe955d475b257f635f76", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7635a6ce5e70b4966563740390b78f5bff49b849a2fb13710441fbe", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/810a3d6c1e93e04987759dbd259ee17ca92dce9ecadbf97e0ef36da", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/84f164092f2065321a67be427046ab42e9c02e614e417ff87515131", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9cb1944708e162dd9e11773e0c09998d0f724d8627e154a0b563809", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a6a3cfbf8ed356fe28c297bb6707df3718852d3521e70979d7e6e24", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a7a0c8a59e5c7f6d9118b4b408d863cbf7b2f7587de8c44424eac79", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ab11acf8a8976a8dc964e5520bd96fc1b4fcf2d434a781ebc6671ba", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/bf615a7c18249e9a318b158ecfb1ae2c861c2f06d5000cb1406b7c4", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c0355a4ed98a618cb42be54fcf4e7eaa14eeb39fd49937f5dc10d19", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/cec2d9bdf2cec28eb1c8624062414a1ebc91f475c7b436495931e06", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e5c1dfdd2dd5fc0a2c38ab499f4667ae8648a564887788568a842df", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE157829", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e7d205cb92bcdb3e72ecb8633b51fe2b71a03995b711b86617dde51", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S2211124722005800", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/37ffd73be99bba8b0ed5fa80c81908ca4fb1db0d4761d4bd39b64f4", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e9c03af9f877a6b1b159b2918b0233406541218c1a39055593dffb1", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.ccell.2021.03.007", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA705464", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE183852", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2021.07.06.451312", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/012d350cff9ab260e37cd3a634dcef5f9dc5ffa3aa98673e1bf0642", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0446c16f85df23f74217bbc887202c84681616ab21454e29bae23e6", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/05be70525ce7b6f85bc1045577cb73993d15781a61aace3972ca424", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/07ccabd9b7cfd553c20ec290c0e5648e141a98d924bc93f43432b50", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/130a47068344adf3be0e66397e1eb232635dd0953fb8a0b7d2c55bc", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1f72e75faddaec888a3dc4fbf9e8b36a5f883a7588ba1a2469d6600", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/23bb5c91a86d0ad236d0abe200f688d1b2d7539e883a7c416ddcc94", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/25f326ef0bedcfbcb318fbdd9143bea73788bec554224e78c6d3ab8", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/29835f87e379c2c7d4bb4cd21bea06c7b29eb711cfc7f2ca96c327c", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2ba7c02b7869a38cdf36947e3376be462bcfa97890ee4d78974b411", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2c2ffdf40106f49d0c29a69c4d2698057967e00c3e168c3be255dee", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2cf5672b0b01f77adfba9a5e828aca73be6e4fb995ffbb8366530ad", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2e5dfb3f7eb18e2a5229e85d6e1ea49ae940f298e165f09b84ec21f", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/33100949908fbdfb651b8f73eb4e39ce52aaee3b6af63bceaa060e6", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/34b7523985c1852114fd8e9e976c21897ff0c67ed94cc51dde872c2", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/368d5b83fc05fc50eb397d794c9b46109f552ba0da1720991e5d928", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4c99f8d73c69c801beaf572f93feef30bba6dbc79185ad6dc4202e6", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/54fbb057c6e5775ba973d1ef5d8389252ef89ef9db9dc62fa42278e", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/587b2b0491e1ead23b580ff08e0bb5d34955478332a76a09c116dab", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6130d516b9980f3232b1d4b3c016cc443ea3b27472613a5702438a0", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/67b95914bd19e0853a8fffaa21193c91b1d01050e3d343c46fa0303", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/727714ed58ad78ed35ed187ef9fea3a8278ace68b808a5e6eaf00c6", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/75d123368147b6bb9ec3c89c5714dad23e11c69d19f2a4b5678781e", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8329ad89b42afe57137707ccf1097a34f260900519771c7bfd619b2", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/84dedaad23db6f87161b125a93c5f5450f4ad2d2e7a62e8be0fa2da", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/871feb4474fc8c42dff7ade920184b4e14cab5d8b2a138d8e67d63f", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8d524f20b7f9764c43a96b804fd86f84f7cd5c155ff46f2c1d7f9b6", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8de3746d6ade371edcb78c61d9edf4c059781ab97803eaaf6038595", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/93cde3e7ad9087f04d308360e0aeb5a6d4af95f78ded6f74c0b9e25", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9747b5afde009ab94b7af5a63365d88cdabc242d66fad5ef05dc3c6", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a0463eda8a77f5e35e1bec480c502262163014ccced59fb5f3c5781", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a0cc5f0a8a3a12fe1d951948382c1c3e5038603820ada9e0273e5fe", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a0ed273a44b8155185221ea9b367fa6b37021988edb3413291f4c98", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a49ce3bce3a86142ad8e8e5286a1e6e42aadf2f68a088c135d087fc", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a698fb66875f9f5c2c19a83bd95193d2cef39168436495505041941", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ade4424b29d03c81e4e77371af6c7b09c793f2bc4645a5dd9b6fd58", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ae8ec91e4faed5d9a36431d1c7c21cff0f568eee99161a3cec45fe8", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b15a1289e94fa6f6a3fc8ae70eb0115d126b9de1bb95f714493f665", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/be5aca77f00ca8d099a579f8e87bc82a141f29ba1de93f2fdbad89b", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/bec951ab09242fe0f3f9c73b2d26c59a2da99c042747bfaa0a4c128", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/bff7e4723a7750716809b37c7f3f1a12383cf5ec8766c5ddbb4f84b", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c0c605b3856492eb3c7f1934adc91f99b85f7a3bf837583bd7e57af", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d17cd79a396470a95db56f7a43b7e3b4cd73324bb0941e54c612a0d", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d27461fbc2e1b7a1bd92e752ab9a782f0779ecd953a77e776cba8ef", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d3c62ee0bd91f2764ad943605209bad9ab6d31dbdbfc90c6fe3e38d", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d3d724fecabac937f63734e9f7479212823ffe71405e9d45cea9082", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/dbfb2f7d9046f9a52ee459dcced3a3b15bf846a535243bbaf7701ab", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e3835396db1dbbe7373caa44745671a79a1c10379a903d4ad23245a", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e512f5019e8109875e4f57b378ed36957cee903dbd47d723daaf435", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e97146d63d1de0aa10afd6e6b18e63b6766ef42694da28e07aff360", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f4209a5c5d9278e9e7f9bce9ee78a9c3b8e493f45973f7b1c756b77", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f6f0d2337d36afd75489f1b65a0da15c9089c7a45617d7e82233499", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5c64b57ddd98d3e4e2354ea816f280cb7e545df8019c49ebce1d624", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/ff1b41a5-7b1", + "clicks": 1, + "change": null + }, + { + "link": "https://github.com/wongcb/Spatial-transcriptomic-retinoblastoma", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9eaa63b5215980067674451ca7cacb390060b10b7a5ad4c17a1d9a5", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE217837", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6886862/", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/76a098cee8d17e2aa9433dfc497f5392f4eeadaa9828921162ccafa", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/5dc0fc63-b92", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE153760", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP344723", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41598-020-64929-x", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/229053c1853e033b3c3749e6f61910337940e6cc74bb9935f13beaf", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2dff0b9b502b6c335b6d5d12d0219ed506e2023218628e6586632fc", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5a1f000caa6c3700b71fda4cba0abecb78b3ec01210246e80f9a34d", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/698e4872caf9aa19c6b06e3a8ba15ae80b51802f855174924fa5ec0", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/fb79d66350efeadda4787f1b2601081c585096e8e0fb5785db65905", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5b82cad8b9ea3df311e6a6035ef31eef64b234c913ed9f72993ccdd", + "clicks": 1, + "change": null + }, + { + "link": "https://github.com/navinlabcode/HumanBreastCellAtlas", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA801681", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/307e31db-17e", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/95025581-6ac", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ca0360b88099ab2350b3e9055748e7266828c8bb8debe7fe20b907a", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41588-021-00801-6", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e132bae274ba635e00f2fe99c19cfec5c2299c5c212b52216d10de2", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1101/2021.09.16.460628", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections/8f17ac63-aaba-44b5-9b78-60f121da4c2f", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/f1ca61a3-90e", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-8999", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-9003", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-9005", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/101cb26b1ec3bdba236372495b3815229ffb68afc17e19b72cfa966", + "clicks": 1, + "change": null + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S1934590922004180?via%3Dihub", + "clicks": 1, + "change": null + }, + { + "link": "https://healthy-bal.cells.ucsc.edu/", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3e3e58210f268303d0e4a3244de46305ae8b987085c095e8e6104f4", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41698-022-00300-9", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE198623", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE140989", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections/a98b828a-622a-483a-80e0-15703678befd", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE76312", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://ngdc.cncb.ac.cn/gsa-human/browse/HRA000342", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8efd198acae1ef4764c50837c06e7bc96651b7dd1c0eebfab8b2b65", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ea73dba97ee7f528642369ca5ed09b2e444756a3fc213fcf28f09e0", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/997a41fb72dd0bfbfce825c78ac564ca42da6d25a5a854eed267394", + "clicks": 1, + "change": null + }, + { + "link": "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE84nnn/GSE84465/suppl/GSE84465_GBM_All_data.csv.gz,ftp://ftp", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections/558385a4-b7b7-4eca-af0c-9e54d010e8dc", + "clicks": 1, + "change": null + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5810554/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA658903", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE131685", + "clicks": 1, + "change": -0.8193548387096774 + }, + { + "link": "https://doi.org/10.1101/2022.01.11.474933", + "clicks": 1, + "change": -0.7741935483870968 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-11265", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-11278", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ebfe526c6b00dd5fe9e9f4360a3d6889dfc402684166afed1c56714", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/df3b046830bb46f948d5fecfd2ae053a374849cad0fbfcfa6d7e0b3", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/55e46537-d64", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.cell.2020.06.001", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA603748", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE144469", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1038/s41467-020-16239-z", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://doi.org/10.1016/j.cell.2025.02.017", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41467-023-40505-5", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41591-020-1040-z", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7e7ae92f801a48829e4f87c62192871c71d7d550e6263185f8ed7db", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e11c159d99055945378f0db7c57d204d91c4837c29550e59e7c949c", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/acf54880-1a8", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA1096305", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP499879", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE158398", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE36552", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41588-023-01298-x", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE174588", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA694428", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE165399", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.cell.2021.04.048", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA800746", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE195460", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE124299", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41588-018-0089-9#Sec2", + "clicks": 1, + "change": null + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/32619514/", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://doi.org/10.1038/s41467-021-27619-4", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA691564", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/78019b1659776715b5ee49b56505d72d8b41401214ee7d79f065c2f", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b2c05c79200bf5b573e8a786ab945896c2e9d48050fd56aecfd6ee1", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/654826a1-e29", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41591-018-0096-5", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-6149", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/biostudies:S-SUBS4", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:PRJEB36885", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE128169", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7255436/", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/ena.embl:SRP103040", + "clicks": 1, + "change": -0.8494623655913979 + }, + { + "link": "https://app.terra.bio/#import-data?format=PFB&url=https%3A%2F%2Fs3.amazonaws.com%2Fedu-ucsc-gi-platf", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1111/cas.15979", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:SRP402417", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE215403", + "clicks": 1, + "change": null + }, + { + "link": "https://singlecell.broadinstitute.org/single_cell/study/SCP1422/predict-2021-paper-fgid", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE126030", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/07409e13eb420ea0e8df76052b238b725e06f6500a0d1e9f5fc80b0", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/75d67c53131590eead678cd86e21ea4d80b8f3fac0292f4052a16df", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/90d57646733d391abcb5bb16e50061eb3536986b0acb73bcc7f161c", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c00292890a6925cc04cf780eefc96262eec0d5d01bdffb3ac5bca83", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4817c7cd1d1aa9627f55e39f2a85e84ddcbd8cb812b1698766453eb", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE165396", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections/4c6eaf5c-6d57-4c76-b1e9-60df8c655f1e", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 1, + "change": null + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6596422/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-8119", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:ERP137744", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:PRJEB52990", + "clicks": 1, + "change": null + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S1550413120301248?via%3Dihub", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/02c5fb90c51683f9ff7d6546337ca775f3d1245e5c3f6df276690ef", + "clicks": 1, + "change": null + }, + { + "link": "https://app.terra.bio/#import-data?format=PFB&url=https%3A%2F%2Fs3.amazonaws.com%2Fedu-ucsc-gi-platf", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1ffa86c0e6eba0a76556a848c4bc55771a161a1e9110416c4f36eec", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e0da0e400a7792c0612a8da7805f08dbfb42c4bcadc80e0f2b9ec8e", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/680e1a05a6a7648fe7888ab49246c735e2b784b099d4c554f606cdf", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1681/asn.2020030326", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE145927", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/2742cc96-0a4", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE134809", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/102cc849-370", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE117498", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/79a38598eaf4e2371a3ea61b6d729b8a1440716bda8d3620256045a", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/d7451b95-c2e", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s42003-020-0922-4", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE70nnn/GSE70580/suppl/GSE70580_RAW.tar", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/ni.3368#acknowledgements", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE67nnn/GSE67835/suppl/GSE67835_RAW.tar", + "clicks": 1, + "change": null + }, + { + "link": "https://www.pnas.org/content/112/23/7285", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE117403", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://www.cell.com/cell-reports/fulltext/S2211-1247(18)31877-1?_returnURL=https%3A%2F%2Flinkinghub", + "clicks": 1, + "change": -0.7741935483870968 + }, + { + "link": "https://identifiers.org/ena.embl:SRP323064", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE176223", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE176308", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a9d87b778e391305920ce5175c2b72fe7a8f9e2cf9f2cf68577575d", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE131882", + "clicks": 1, + "change": null + }, + { + "link": "https://www.biorxiv.org/content/10.1101/645424v1", + "clicks": 1, + "change": -0.8193548387096774 + }, + { + "link": "https://doi.org/10.1038/s41467-023-36983-2", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/5963af96-b20", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1126/sciadv.abo2467", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE148434", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/aaca5ce785c84cb43189b48016f55801ccb3b3cb81e598cbde9a8d3", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://doi.org/10.1038/s41467-024-50853-5", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://identifiers.org/geo:GSE268630", + "clicks": 1, + "change": -0.7741935483870968 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8382575/", + "clicks": 1, + "change": -0.7741935483870968 + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001005271", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-9083", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-9228", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-9363", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-9372", + "clicks": 1, + "change": null + }, + { + "link": "http://covid19.cancer-pku.cn/", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.cell.2021.01.053", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/geo:GSE158055", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/05f224caa67d5c9085324d385224467569f0b2ed54b28f2be36558e", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a375e2b280cf314f46fee47665b6b9e1e61d0a000e46e9953403fab", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41413-021-00163-z#Abs1", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6295155/", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP559768", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE97104", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41467-024-55325-4", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP388800", + "clicks": 1, + "change": null + }, + { + "link": "https://moffittlab.github.io/visualization/2024_Human_Liver/index.html", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2ffaa3a91359869d397762b891dfa39677dc84660c63e0a8a895097", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/868cdf06ce59047179e5ca0d40575fe231a83887b2235a1eef07dee", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/95f1ce9c4a5e9d3b72757128f11c33ba8ec9ca5a86b377ea9425289", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a0870373c884506c4f60ea6b3c7402dac1ae6e835ece86d46f9a476", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b345248ad9ecc9d27a929d8ff923c287918517a1e840798f2a85d77", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b5fbc1f31c8544929c5901da039e0eb0ed35247112ab6d7c5327bf0", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1164/rccm.201912-2445oc", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/geo:GSE135851", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE165860", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/04e834cced68b30b96fdcb2738476987e3e0f6a0f2cd5b6c67e896e", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5d609f89a385039407fb8793bfab175e5f3f5a6c5231e72e70781b9", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/baf8c71b6a8c9a3d428c55b786d5b01fde186b1d0721d15cbde984c", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c88feed90ab980f8e4833347f871eb2323c31115139c4e2e5bba466", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/cf12b0d322e64ff677c2b6642309a0e297485f0e412a172972029fd", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/cf5a7b9d51e8c77a7379fac81661dfa607f64879cef737531f8558c", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2a12df3d9bc80c744a4f6073dfeebe411dbbdaa4e72ce4d9d7bef65", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/da912f39d40e85de84e907448369841c9dfe2366d92d07b8bacf90d", + "clicks": 1, + "change": null + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2021.03.02.433590v4.full", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/49827b8d71be7ac7c6917a7b9d0df3ef246d05b102e327050b4da9d", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a0c9855463d2c12dca67b3efeb14ff4395431e70b0ad421e24336da", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/72c60bfe-df0", + "clicks": 1, + "change": null + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8221309/", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA632939", + "clicks": 1, + "change": -0.7741935483870968 + }, + { + "link": "https://www.synapse.org/#!Synapse:syn21041850", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/60e29996b0ad2f2a7dfef6a1a597720d56bb9d03937fb0b4b676e60", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/bd65e3b0d9db29ba65a195ade82a8e9d3c9c259ae819beafb87bef7", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e28353c088bf3b4d660220377a5f5fcc64839fb9e307cea47afe4e2", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/edb16c6e021cb21b18757069fbe2f59756c1ff32215fd395e51015c", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/647d338e-7f4", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE155683", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S1542012421000215?via%3Dihub", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f001e7ffd9cce1dc584cf35241a4562bdcfcf6640159904609242f6", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE131258", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.nature.com/articles/s41586-019-1917-5", + "clicks": 1, + "change": -0.7741935483870968 + }, + { + "link": "https://identifiers.org/geo:GSE133545", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41587-020-0469-4#Abs1", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/c15418f2-798", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1371/journal.pone.0267704", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE151671", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S2666335X22000593?via%3Dihub#sec1", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0452149b0bcff9660951de87913b82a4d72784c08d0c782e49395f7", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f435bb2651ff5297d0c24a99daf58850ed67ae1ed6c5ef05fad48fa", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3ee499646fcd76bb4c6150f6851a37e60853909cefe1e3d9f2720f6", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/276f464b-1e8", + "clicks": 1, + "change": null + }, + { + "link": "https://twc-stanford.shinyapps.io/scRNA_Brain_COVID19", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1186/s40478-023-01568-z", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1093/brain/awab446", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA360949", + "clicks": 1, + "change": null + }, + { + "link": "https://github.com/miao-OvO/PG-scRNA-seq", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.stem.2020.11.008", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://github.com/prabhakarlab/AIDA_Phase1/", + "clicks": 1, + "change": null + }, + { + "link": "https://www.cell.com/cell/fulltext/S0092-8674(25)00202-8", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://www.humancellatlas.org/", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6a55b4e2a5e24e2a85d5ec27fe12d3dc9cd261d2bd9a6d4c568b962", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a64307b2ab8c92af27f5b270e6440e749c62df0c3fbeebea866fd4d", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP064464", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE73727", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41467-021-25328-6#Abs1", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE173731", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE81608", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://doi.org/10.1038/s41593-020-00787-0", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://genomemedicine.biomedcentral.com/articles/10.1186/s13073-019-0615-0", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://identifiers.org/geo:GSE227136", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://duos.broadinstitute.org/dataset_catalog", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/geo:GSE159115", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d69003f2fcc5447e37c39154a1b3e916361951471f161176e6ec9c9", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.cell.2018.05.060", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41593-020-00764-7", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE147528", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections/77446b76-1c2d-4a71-8e59-0efd4374d98e", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA1023837", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE244594", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://cellxgene.cziscience.com/collections/d2684035-a36e-458e-96af-8e37930bfdf6", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-8007", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-8474", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-8476", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-8484", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-8486", + "clicks": 1, + "change": null + }, + { + "link": "https://www.gutcellatlas.org/", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE148963", + "clicks": 1, + "change": null + }, + { + "link": "https://www.covid19cellatlas.org/aldinger20", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41586-022-04817-8", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://singlecell.broadinstitute.org/single_cell/study/SCP1303/", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1126/sciadv.abf1444", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE165837", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/fa9039173508287282b3ff59ca17f5a950c90e6d974e2c9a30f39ac", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f19262f7119dbaff7b3747727472d35b0cb68809dde57230390e742", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP278833", + "clicks": 1, + "change": null + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/33444816/", + "clicks": 1, + "change": null + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/37206377/", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://identifiers.org/geo:GSE132044", + "clicks": 1, + "change": null + }, + { + "link": "https://www.biorxiv.org/content/10.1101/632216v2", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://artyomovlab.wustl.edu/sce/?token=bsl3.all_pbmcs", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://artyomovlab.wustl.edu/sce/?token=bsl3.cd4_t_cells", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4a3169ebf5b5f6c38ca5fba7f25f906bf0f8abc3fb6dd307c67706a", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4fb31a0cffb078aed74a2b8a8e7ef7e0b8c34fd0ab740050bb46bc7", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/55732afd5a2edb87f90d59490bf492324e8cb4d2b15a66411576856", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6d03b6eb3711bc3c5ded133b269827457eb6b9e3b6e5dd0e73f4551", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8771fafc9aabbc9083c6bbfce77b4e9fdd68047019b6383d980a769", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9e74561b643e585a3b50db0bad22d170aa0934d448166d54338d8a8", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c026bee18fbd47ce440446c543ff16cc643f0e606d557a18bdeed50", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/dc78ef20669c3c0c0012f3cc697ed552c1b9d4d98ed4d25401c8ab8", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/privacy", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP310949", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-7417", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-7427", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections/4f30b962-d49b-4624-a233-64f048cf8632", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/b9e31d0c-2b9", + "clicks": 1, + "change": null + }, + { + "link": "https://data.mendeley.com/datasets/g67bkbnhhg/1;https://www.sanger.ac.uk/project/microenvironment-of", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ega.study:EGAD00001008030", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9f3b9aa3322b83b0fd81b0499b9577179b02828b30d41094120736f", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41419-021-03724-6", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0742c58b13b29507b0b528bab84dcf53779d0b0e0b711690e2d50b5", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/5062d70d-a26", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41586-023-06311-1", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/edbb043a7c27368389f404bb15834b706c11352fa98b2cc4659c7ea", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f40d6f8cbf1baa281ceb7908bf88807e468f23e1a625fe3560398e0", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/16492d0274ad2d4cbcc75301a44ed7fb172f8f3cd6167b9e00c1a62", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/57b69baa-6fe", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.cell.2021.04.038", + "clicks": 1, + "change": null + }, + { + "link": "https://immunology.sciencemag.org/content/5/49/eabd1554", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE173682", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/eb06e0e2-5d9", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE184111", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE184112", + "clicks": 1, + "change": null + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S1534580722004932", + "clicks": 1, + "change": null + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pubmed?LinkName=gds_pubmed&from_uid=200083139", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE202210", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA749859", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP329970", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE180878", + "clicks": 1, + "change": null + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/35617956/", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41467-022-34255-z", + "clicks": 1, + "change": null + }, + { + "link": "https://cellxgene.cziscience.com/collections/af893e86-8e9f-41f1-a474-ef05359b1fb7", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://app.terra.bio/#import-data?format=PFB&url=https%3A%2F%2Fs3.amazonaws.com%2Fedu-ucsc-gi-platf", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/5ec0f477-861", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1093/ibd/izac201", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE146409", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA728702", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/2a005fc1-542", + "clicks": 1, + "change": null + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP301923", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/0ff25bb3-17e", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE153643", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41591-020-01227-z#data-availability", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE138707", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE151091", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41556-021-00740-8", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://www.nature.com/articles/s41467-019-13382-0", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE140819", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/63359b9f83433e116d6e19901339c4fad877106a709728f5bde2658", + "clicks": 1, + "change": -0.8996415770609318 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA381100", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE96583", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE150212", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/geo:GSE144024", + "clicks": 1, + "change": -0.7741935483870968 + }, + { + "link": "https://broadinstitute.github.io/warp/docs/Pipelines/Optimus_Pipeline/README/", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/biostudies:S-SUBS7", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.ebi.ac.uk/ega/studies/EGAS00001002171", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.5281/zenodo.5813397", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/5b5acf4e-533", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/biostudies:S-SUBS13", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/d068aa16-51c", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.cell.2021.02.018", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2b26bbb92623f96915d91209b5d2ac1f7658fc0b24cd914350dffa3", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-5061", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/0efb05e5-74f", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41586-023-06806-x", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://limb-dev.cellgeni.sanger.ac.uk/%20https://github.com/Teichlab/limbcellatlas/", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE154826", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/e458e2e6-e5a", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001004653", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 1, + "change": null + }, + { + "link": "https://ngdc.cncb.ac.cn/gsa-human/browse/HRA000328", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/67f08b117ca23e281ff5e2c9a5e5a04832a97fc07ec26e7fb63fccf", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE146639", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/34279540/", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41586-022-04571-x", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE156702", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE156703", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE156704", + "clicks": 1, + "change": null + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/36532041/", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.7554/elife.64875", + "clicks": 1, + "change": null + }, + { + "link": "https://ega-archive.org/studies/EGAS00001001755", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE197268", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1038/s44161-023-00260-8", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1101/759902", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/147bdd11d720ed30736a459ba62a3d8e2f3f9028a8430e0eb714484", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e43b3008945c87a6875d4fb1a99a791fdaefeeb3c5a72a5d17589f6", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/d949ac37-5a2", + "clicks": 1, + "change": null + }, + { + "link": "https://broadinstitute.github.io/warp/docs/Pipelines/Optimus_Pipeline/README/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.5281/zenodo.3572421", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:ERP119282", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.science.org/doi/10.1126/science.aay3224", + "clicks": 1, + "change": -0.8870967741935484 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/contact", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/fa383c3a-50a", + "clicks": 1, + "change": null + }, + { + "link": "https://advances.sciencemag.org/content/6/28/eaba1972", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1126/science.abg0928", + "clicks": 1, + "change": null + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2020.12.21.423830v1.full", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE183904", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ba089d1dc186826e84d2199d1eb6942c35eb8fb70e7a5d2b20650b7", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.cell.com/cell/fulltext/S0092-8674(21)01279-4", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1c155f06643b3c42cbdda70a2bf17630fd00687bfdff0b072620969", + "clicks": 1, + "change": null + }, + { + "link": "https://genomebiology.biomedcentral.com/articles/10.1186/s13059-019-1906-x", + "clicks": 1, + "change": -0.8193548387096774 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/73331e150e65a614c94ead868c442a31832a6265b6469f5edd78edf", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41593-022-01061-1", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA561303", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE136103", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f708044bcd8f7239cf44193512e31c44450069f4153382f49f19bf6", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE86469", + "clicks": 1, + "change": null + }, + { + "link": "https://singlecell.broadinstitute.org/single_cell/study/SCP1849/", + "clicks": 1, + "change": -0.6989247311827957 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/c64f02c0-c45", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41588-020-0636-z", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/geo:GSE132257", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE132465", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE144735", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE213796", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f964c4d6cc114da8f65e149902ac74224b82812cecdc6719ea091ed", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/c32ecad9-05d", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE189539", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.biorxiv.org/content/biorxiv/early/2022/02/10/2022.02.09.479667.full.pdf", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE218000", + "clicks": 1, + "change": null + }, + { + "link": "https://www.pnas.org/doi/10.1073/pnas.2204269120", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://singlecell.broadinstitute.org/single_cell/study/SCP1852/integrated-multiomic-characterizatio", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0c2fab6bac0d5418d13729ea189f300b96a7dc9f019578b6a4c2ec9", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1cb4a40178a20297750c7f78da885317985a7c642e54eb634bc6aaa", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/33b43e52d001f69cf8b1ddcf10d5ac0b17639645c6e36e97eb617e6", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/687cd0f6783fcf227d5f4dd8c0f07b6bdddc6ea30dd4059de67181b", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7ba8ad2d479d7e86c1ab06f3db3949d5a30dce8c12deddb46600688", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/97904b1e63192feae02be6836f98c5abec6202c2b8c38d631c00490", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/dc5cd8104bde58e78a597cc9f1e00bf2a56a8afb0e6fcc55f0442ef", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e9102c0c399d6b10cba91d6b1d911c13aa76b56431b43bb9a8bb2dc", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f9faa609d43ee9c4e0aac6d8962871fa95090f9dd0b58ac8434aa9e", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/14ac8822-d24", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1073/pnas.2404775121", + "clicks": 1, + "change": null + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 1, + "change": null + }, + { + "link": "https://github.com/linnarsson-lab/developing-human-brain/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1172/jci.insight.156341", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/39a18867-bfe", + "clicks": 1, + "change": null + }, + { + "link": "https://broadinstitute.github.io/warp/docs/Pipelines/Optimus_Pipeline/README/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/01b1bd74cae097d411dddd1c6b1394638cc6a27328ccff81827537f", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3de0ff8c18d0deb9553e47183f18bb4b1a419823c96e7d12a1733f5", + "clicks": 1, + "change": -0.8193548387096774 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7eff86649c32d613b3d69082bfe54e1f539c63df94ea46bd420352d", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/bcc51e89e322f44ba0a21b4d15d8074fdc2f70a38d19d5494dc9bae", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/dd89f5e5-347", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f14d678ae82c8a17fbb81c783db5902ef025c0a46be37be4e709996", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ega.study:EGAD00001007959", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0e92df95813f4e04763a99b1a31f4a600afe2d678dcd46cead7088c", + "clicks": 1, + "change": null + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pubmed/28965763", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 1, + "change": null + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/a9e2206c-ce4", + "clicks": 1, + "change": null + }, + { + "link": "http://livermesenchyme.hendersonlab.mvm.ed.ac.uk/", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE137720", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE171524", + "clicks": 1, + "change": null + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/33915568/", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001002171", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1158/2159-8290.CD-19-0094", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://cellxgene.cziscience.com/e/37b21763-7f0f-41ae-9001-60bad6e2841d.cxg/", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s42255-022-00531-x", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/16aec6ede550c4df9d1a0ce43132901b1f3f727fbc78e553d8589a4", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nupulmonary.org/resources/?ds=fig1", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE158733", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE144870", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0d7e94f572580e2213dd758dd3b5d7414f8f278bb8a2708f35ee4d1", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/30addeac391c12c78595129189280a6e9b00280fb2c450c03754228", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a38c50ffb92c0dcfba028feef2771bf38617266fdd0b6484faf20ec", + "clicks": 1, + "change": null + }, + { + "link": "https://www.cell.com/developmental-cell/fulltext/S1534-5807(19)30486-1?_returnURL=https%3A%2F%2Flink", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.5281/zenodo.14001210", + "clicks": 1, + "change": null + }, + { + "link": "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE109nnn/GSE109774/suppl/GSE109774_Spleen.tar.gz", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE109774", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE135133", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.26502/fccm.92920277", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/798ab9d7c84ab85b4095e1f088df74ef79bd23dadaca81914e7331b", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://doi.org/10.1038/nbt.4038", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE97942", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-13084%20E-MTAB-13085", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:ERP148474", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE131928", + "clicks": 1, + "change": null + }, + { + "link": "https://humantestisatlas.shinyapps.io/humantestisatlas1/", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA554092", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE134144", + "clicks": 1, + "change": null + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE178362", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:SRP295673", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE162610", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/76126b91461df8d8ba967da24c2379c9f1e517485ddc847974cfc07", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/9b3336b7-bea", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/e27b4b77-ed4", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA869131", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:SRP399405", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE215754", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/941985ef46d92489fd5f80e3ae5e824a517576638be7ccc16ee7124", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/10a5459edbb511c05cbdde0f1e5cc2882910fbd3552fbe5e929a0a0", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/79c0f669-9f1", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE211785", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0d761d4ee140b7ab035d948e9fb599a075c4609b66d825a96c534ed", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2a321ea674a2549f6d0de26cc940330cafbb5b1aab7c81df47b7f3a", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/34e7b803559a6764b662f341fd64d9d3e2f40b9010e62ebad1e9c5d", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/60b2ad56e12ae9ae181573c2030d32cf7fcf2f4db561d8e4f85b09a", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/80d92b0ea4aa2244280b4b6faa824e6bbf48cac3bc4d405b19db61b", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/85666889a1f546590c146770f87ff2bdc2bd94b4de54bcaffcf8e92", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8d85ffa5c38c310ae0231d575fa18f6256c74f17ebf1bc41f8f256c", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d8ae7a60ee7d3cfcc5e082014bee2dff53c36a2b998815ca27afb86", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ee2162b37897678c9ac0724c7aebd6178ec3c88c0a28ff3219641e7", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/9a783dc1-622", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0d8e8aa0e2c23f7b150d23321ec46d72a3e1a2d76c9d08ffc3e1aec", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/203f03d0f52978eebe25c76cff32daeead9592b61acbbfe6a7b1163", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2a6cc79f05869628843a7d4715da1805fc19da1fa921da72db6bbc0", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/55429ae22686e55dbf124fa8ebea8929e55c9a3af1d688d317620bf", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/97a07917-324", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/a2c33459-4b9", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/dc41c254-481", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/ef561f66-7d9", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1038/s41586-022-04718-w", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/c46f9525-b9f", + "clicks": 1, + "change": null + }, + { + "link": "https://github.com/DeprezM/HCA_analysis", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001004082", + "clicks": 1, + "change": -0.8494623655913979 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/9ce0b06b-4b4", + "clicks": 1, + "change": null + }, + { + "link": "https://czi-pbmc-cite-seq.jax.org/", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.3389/fimmu.2021.636720", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://zenodo.org/records/14722572", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/3637a2a6-eec", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/47f6542d-e59", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/55f0022f-0b6", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/65e981e3-8f5", + "clicks": 1, + "change": null + }, + { + "link": "https://aacrjournals.org/clincancerres/article/27/23/6529/675021/Spatially-Distinct-Reprogramming-of", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-7407", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9d5294b0fe71b21cd03f1516111c53e1143a23260eaa32871e1a244", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://doi.org/10.1016/j.cell.2019.10.027", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:SRP165969", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE130772", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41590-019-0425-y#Sec13", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://cellxgene.cziscience.com/collections/6686ada5-43a8-40b6-9a05-6894503606db", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1126/sciadv.adm7506", + "clicks": 1, + "change": -0.8494623655913979 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7611234/", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1016/j.isci.2022.104772", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE189346", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/16a1cad27a5fdd987c942e34c3171cb49815e3b16e0e8a44d2ba42a", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/cb085961-935", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:ERP110450", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:PRJEB28266", + "clicks": 1, + "change": null + }, + { + "link": "https://www.humancellatlas.org/", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7e92e56113f85bff81f7d6b0a7d756d38b24586a4c9b0ca05ff5128", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/adeb6f14a108e53a089e4b58f9f791c01196d4299553d0dbf394635", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/geo:GSE95435", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE95446", + "clicks": 1, + "change": null + }, + { + "link": "https://data.mendeley.com/datasets/gncg57p5x9/2", + "clicks": 1, + "change": null + }, + { + "link": "https://doi.org/10.1016/j.cell.2020.12.016", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://identifiers.org/geo:GSE158702", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://doi.org/10.1038/s41586-022-04518-2", + "clicks": 1, + "change": -0.7741935483870968 + }, + { + "link": "https://www.medrxiv.org/content/10.1101/2021.01.22.21250336v1.full-text", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://developmental.cellatlas.io/fetal-immune", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-11341", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-11343", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-11388", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/ena.embl:ERP135635", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/ena.embl:PRJEB51045", + "clicks": 1, + "change": null + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7612819/", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE163587", + "clicks": 1, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41422-021-00529-2", + "clicks": 1, + "change": null + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/95b42ca5725a8a4ea9baf44e11028f938e97fd39bb69a5a1f89bf8d", + "clicks": 1, + "change": -0.5483870967741935 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d4aad42f1580d2b0da921bfb8bc52b2866f3e84d04ed5e549ba87ae", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/35a0ce10-5b1", + "clicks": 1, + "change": null + }, + { + "link": "https://data.humancellatlas.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/contact", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/privacy", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/register", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.linkedin.com/company/human-cell-atlas", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://celltype.info/docs/exploring-cell-labels", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://twitter.com/humancellatlas", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/42382205-9f1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/45fd2c63-257", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/daf6da42-d4d", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/82ea2bdf5c37c1ee272c4332eb14eb65a581f708f68b494168557c7", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/924445694b96c79e680fd05d791d69a35e23a1178bce5d6fcd44544", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9605f3b61e5019671d764b8a2e40e633bbd9535bfd3d3d2ef98fccc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9b501a8c7ef361db2c04df42798d94138a7254e08f3641479f74912", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/af1f744c24145a971b04ee60cc6eb56bc17629a952ac9905720e3a8", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d46acd4928a3843972610abf834f33d6af3fd9e831b2ad18da01763", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/da672807588e8a9f757ea11fe03919c99a37ebefca0eddc2c5fbaad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/de44c4f2239224366695cb03031ed866256bc5aa0d56eb99f3b5c46", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/HumanCellAtlas/dcp2/blob/main/docs/dcp2_system_design.rst#terra-data-repository-s", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://app.terra.bio/#workspaces/featured-workspaces-hca/Intro-to-HCA-data-on-Terra", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://broadinstitute.github.io/warp/docs/Pipelines/Optimus_Pipeline/Loom_schema", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://support.terra.bio/hc/en-us", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://api.cellxgene.cziscience.com/curation/ui/#/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/HumanCellAtlas", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://twitter.com/humancellatlas", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.nature.com/articles/s41586-023-06638-9", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.linkedin.com/company/human-cell-atlas", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/00476f9f-ebc1-4b72-b541-32f912ce36ea.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/04a23820-ffa8-4be5-9f65-64db15631d1e.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/095940cb-7422-4510-96e2-cbafd961eb88.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/1185a7d3-a9c1-4280-9ba5-d61895b15cac.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/19b21f40-db42-4a71-a0d6-913e83b17784.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/3a7f3ab4-a280-4b3b-b2c0-6dd05614a78c.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/421e5f54-5de7-425f-b399-34ead0651ce1.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/4724c395-0c46-46d2-81f7-60fd271fb488.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/4976b234-9028-4b4b-8a2f-8ac59d636219.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/70e4f35b-c98c-45a1-9aa9-2053b07315dd.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/7db0c178-b0a4-442f-ba54-e9e1633a84bb.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/88a01d4a-5197-45be-b5ae-e019aef43376.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/a59ba9fa-1407-4f15-8c56-d3637421570d.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/db1d2c1b-2ee1-45d5-9d53-69a327cd77e6.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/ecd9230d-c571-4dab-abd3-8b54c74833f0.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/f16f4108-7873-4035-9989-3748da1a7ff1.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/f32c2c13-bb1a-4ffd-a457-60b64ecfa4cb.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/f6d9f2ad-5ec7-4d53-b7f0-ceb0e7bcd181.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/150eead4-9cb2-4c51-a071-2b1dc6b33e30.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/17c0673d-b287-4d5f-b791-3864b40c6806.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/29a6d101-a71d-422c-8569-cfa05eae4109.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/316406c3-dc97-418f-a1fb-f3c04fcaa4c0.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/33832bfb-f352-45f6-9b20-8335bb900c57.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/37c0948b-db69-4f80-a737-602ac5bf5c35.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/41eecfeb-14d1-46ca-932e-52ab0c552a51.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/461809d8-45fc-487b-b25f-13251997aeb6.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/4c9e18d1-4261-4b40-b56d-447fcbb704f4.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/4d505ded-49b0-4523-b7a4-7c332299ef1a.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/5c2111a6-6e45-416c-8dc9-a37e93fb6d5b.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/6364d141-416a-4612-b898-3e2aa0d820ac.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/6a4baac0-09b5-40f6-82bf-a6dae249cc99.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/7308937b-63aa-41a4-a386-913118d8d836.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/99835692-4386-4207-9ad1-807e30a66198.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/9b11f7db-e698-43fe-afa7-f923f0b30957.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/9e32e4cd-8726-47ae-bea8-3b5e7a8facda.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/a2eabc3c-2e20-4388-a93f-59c78fd9950c.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/a61ef34f-5109-49a2-9164-50a723c6fc52.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/adaa52c8-6ea8-4295-9d95-b69b3099b95a.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/b39ac31e-d521-4f02-9d61-7e1734ff1697.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/b96a4843-5440-46fe-9f3d-36c3e5ee69dd.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/d04c2758-266e-4b28-b1fc-8d7afb686fdd.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/d2bb3e8d-68cb-4029-9927-7942fd6c1554.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/d2f679ca-6c8a-4757-b6ee-b11e455cf2a5.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/e32db923-376b-4b62-aa7d-aba273d0150a.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/e824579b-e86e-4a97-a670-fc88fbae36fb.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/f95fb41f-dec5-4016-b762-8126eb1eb23e.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/fa967bbc-40b8-4573-87a4-6ceb34caf436.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/18b86073-1ce0-45ea-a9f7-282acea8c32f.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datasets.cellxgene.cziscience.com/5d917c2f-086d-44c4-80b8-a4aeb3783398.h5ad", + "clicks": 0, + "change": -1.0 + }, + { + "link": "http://data.nemoarchive.org/biccn/grant/u01_lein/linnarsson/transcriptome/sncell/10x_v3/human/raw/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://assets.nemoarchive.org/dat-d6r90fb", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://celltypes.brain-map.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/collections/283d65eb-dd53-496d-adb7-7570c7caa443", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.nemoarchive.org/biccn/grant/u01_feng/mccarroll/transcriptome/sncell", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.35077/g.609", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://dx.doi.org/10.17504/protocols.io.y6rfzd6", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/AllenInstitute/human_cross_areal", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/AllenInstitute/human_variation", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/e/569bce19-14c3-436f-bebf-543e5ea025dc.cxg/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/devsystemslab/HEOCA", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://devsystemslab.github.io/HNOCA-tools", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/contact", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41467-020-15647-5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://ega-archive.org/studies/EGAS00001004375", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.7554/elife.62522", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA677981", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA677986", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA677987", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE161382", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE161383", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/AlinaKurjan/DPhilCode", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/ddbe733f-b8e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE166895", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/eb7f014b-595", + "clicks": 0, + "change": -1.0 + }, + { + "link": "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE109nnn/GSE109822/suppl/GSE109822_CD3145.csv.gz,ftp://ftp.nc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/29391249/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA606213", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP248411", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE155468", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE144136", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1ef75029aa844385a0d53b5485179da86917d7ff0df7bebbf114453", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/645472a797097c6455f69c5d9cdc2a5aa4a60e764df519ada75629c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE137847", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/49a0f147d31d2a6cc83275301455e0b3af0614cf939e8d5b0af0669", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://duos.org/dataset/DUOS-000259", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP281979", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/cb0fb010-a18", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE164485", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/52f5deda-182", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/95d5818a-74a", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP180896", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://clincancerres.aacrjournals.org/content/26/4/935.long#sec-6", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0529adba7e7b66dcdbcc93a4827f20681eb97a87192f9676c65b4bc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://azimuth.hubmapconsortium.org/references/#Human%20-%20Tonsil%20v2", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://bioconductor.org/packages/release/data/experiment/html/HCATonsilData.html", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE202601", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1016/j.cell.2022.06.007", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1080/22221751.2020.1826361", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7b38c5f257dab6abe19724fd661248436ca44b06bb690d64f5a1339", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/f9397f66-368", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1016/j.cell.2021.07.023", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.science.org/doi/10.1126/sciimmunol.abg5539", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://trace.ncbi.nlm.nih.gov/Traces/index.html?view=analysis&acc=SRZ190804", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s44161-022-00028-6", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.nature.com/articles/s41586-021-04345-x", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/18b2c42fc06d92d8b610dca91b0c8a8f656725cb1bdc62c10e7642b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3417e3ac017003422e3a3391c0e82ab02e4ef84e3161203cd842cfe", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a08c14baf36ee2d588878fcbe8e9002b4946e696da95404f3ec71ab", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/3dce609e-a8b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA767088", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1073/pnas.2200914119", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://singlecell.broadinstitute.org/single_cell/study/SCP1841/cell-atlas-of-the-human-ocular-anter", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/30449713/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1186/s13073-023-01179-2", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP261119", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE150290", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/879acd76-aa3", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1073/pnas.2306153120", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA393886", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP111557", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5eeb3650ebc5958b8083ba79ab0e4b486e025009225161f30d4d932", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S0092867420310047?via%3Dihub", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/MarioniLab/EmbryoTimecourse2018", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://marionilab.cruk.cam.ac.uk/MouseGastrulation2018/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0b1a69606d451de95f861921d9ec4d5ab1ee6b58ffc500c5ca261db", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1101/2022.06.17.496207", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE132509", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE134355", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/collections/4195ab4c-20bd-4cd3-8b3d-65601277e731", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE234814", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE234817", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE235326", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://navinlabcode.github.io/HumanBreastCellAtlas.github.io/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/37f3b506-634", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE93593", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/collections/4c6eaf5c-6d57-4c76-b1e9-60df8c655f1e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE132658", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1161/circulationaha.119.045401", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://singlecell.broadinstitute.org/single_cell/study/SCP498/transcriptional-and-cellular-diversit", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/5489aeab-8f0", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.nature.com/articles/s41467-019-11266-x", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE152197", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1126/sciimmunol.abe6291", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE199243", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1164/rccm.202005-1989oc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1101/2021.08.19.457030", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE225278", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP302898", + "clicks": 0, + "change": -1.0 + }, + { + "link": "http://humphreyslab.com/SingleCell/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/collections/9b02383a-9358-4f0f-9795-a891ec523bcc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6086934/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8c1120f947e97f8b0fdf956efaa8e27a761dc5e785ddb5afe8f8251", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/c9d697eb-f62", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1126/science.abd1449", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/42447bcb247b8c62dc0c89408a2c4043bc63d395251552330a53a34", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA544431", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP199294", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1b51f36195594e1addd804bf63c1082d4e15654ba3274f81c45ff1f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/82af3659a580df0e826ae0854e136a29b3a6e6e757a3b4d1aff8bdc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d1644a34f546f039a5d75769f3d1e354ef112ed739825e6191109e2", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.15252/emmm.202012871", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-11266", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/10dd7ccad887412afd0d2ff635774c42c1e7907bedec05395baa645", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S1074761319304959", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2021.07.19.452954v1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41586-018-0449-8", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0584a12ad7206f1f1af5d8461282aa882f8c1c4fd7be9745e263b38", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2a0d93b438a17740ceb66f3dbec5cd76683861b3bd54ecc236b6c05", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4701c03226e714fb9d2fa692ede9c52d4cccb32a4a0c15b566960a9", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5b71e4786866b3c56e45989caa0aba060b20691e2d5a40749afcbe5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5e3c849c1dc4807d5c44e327c3877e511f67621c6ee29c25aa9a819", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8128a047eb15bd795ed660878b39d78b8617abb4f26021b3a1ba22e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/96a372caf732d69b9671ebc11b3831ffe4f1da203306a7fda0b647c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c0c8dd6cdf19780974934f162e2cadf966b5d0e19952dfd619906de", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e52add3dba137af0b0bc9634e98d47b1f9c05bf8e7214f6f6449da8", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f0c29e52f0092bea243f0369a4fcdd18d796ab04144e22c21b8024f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f9b65e503d9aac4eba98204c3e8f82a3272e41c5e8d549907769295", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/6d579ca1-dda", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/prabhakarlab/AIDA_Phase1/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2024.06.30.601119v1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1126/sciadv.aaw3851", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/xinhe-lab/aFib_heart_atlas_mapgen_paper", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/xinhe-lab/mapgen", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE224995", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.nature.com/articles/s41586-019-0903-2", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA665069", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP285031", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/135f09bff567d41a7a31acede6ce591a31979b41aa850c24246ac38", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/eaf9acf53cf24c86ebf6228ebef4f0bf682c5ea8c7018a3aa42a386", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/fd7e1c00b883fb951693be8dbe5368dba1b3456ca9ba7ac33e546b3", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/167b091e-69f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/collections/b3e2c6e3-9b05-4da9-8f42-da38a664b45b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE130430", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA718775", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP312873", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE149313", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1126/science.abo7257", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4c423d10901862a65c79fb21eb990faedf9b6589d189d8716fe72e5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA379992", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-7320", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:ERP112353", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJEB29992", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/729cf8718eed7613692a13eee5c91445e75609910ae114a3c91e436", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7bbdba48de2dc777218462e32f94a24546a5d26109e99d724c56996", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA1093457", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1016/j.celrep.2020.01.007", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.vibcancer.be/software-tools/Murine_ECTax", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://broadinstitute.github.io/warp/docs/Pipelines/Optimus_Pipeline/README/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/46a081d9af6b5aaeee8a11c971d6ef011cd8623827f3366f9a0c267", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA827831", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/95efe702-8c4", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE166935", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE196235", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/079bb5504d1d1f55c5e4cfc24d02fb8a09d883b35efba22842ec8dc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.reproductivecellatlas.org/endometrium_reference.html", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE130973", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://broadinstitute.github.io/warp/docs/Pipelines/Optimus_Pipeline/README/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b00ecf9069e6ace07af9ef88e8774820981585bacbc8f5512e83454", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8511845/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.15252/embj.20105114", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001004419", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/56de5c7ffe22d7fcde998bcfac6df284154078f7d20330f77336375", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d7e16208aa49afa9f32a57bb8eb0d4faab35dcf753660c1e0f58d1a", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/2cd00b65-966", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/3ebaa48c-369", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP510712", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/dc9b9b5d-578", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1126/scitranslmed.abe4282", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE158127", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/bdf521ca-c94", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/921a7b2bd72c1d8f5453f61afc511d1860f849b33efb7625cb12ddd", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/Yale73/scRNA-seq-for-diverse-human-rashes", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41586-022-04552-0", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE130076", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP297414", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE162911", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE164013", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE171668", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.nature.com/articles/s41586-021-03570-8", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/358fdd33-59c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/collections/cc431242-35ea-41e1-a100-41e0dec2665b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://datadryad.org/stash/dataset/doi:10.5061/dryad.37pvmcvsg", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0020d3585e786c9937e17ba59a01bb9c95b1281d3b505d0103f49fe", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5c5c8a253aebc45a761539f25b6542089e8fdbe1d46d43c4cd38908", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8927f682a5d41bd3fbb9045a9915ea3369b0ae928567d13e1ff8124", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c6718f32967f5e611936c463dfb2a6c44b3362b1a47900e858758f2", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ce9da3a6c359afefa881803ab82e3fb295f7b73458e9eeb0f107f9e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e722c35d7719975c710126b99cff305523550060fa8deec3d858e75", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/7a43905b-7e6", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE157376", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/ce8ebba3-8bd", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.science.org/doi/10.1126/sciimmunol.abh3768?url_ver=Z39.88-2003&rfr_id=ori:rid:crossref.o", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41586-022-04918-4", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:ERP137237", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:ERP137358", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:ERP149788", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c6d3f7de2ce6a59fceee481a8e27db1294ff22ac8ecc4466379b653", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1101/2022.10.17.512579", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.21203/rs.3.rs-2402606/v1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE217494", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/05c2ea15f368940cf6c6028fa6d794e378708d0cdbc1f898e601264", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/07288dd03bd845c9fc931851ffa6c4c29bc277b17b284fcd1254871", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0adccb55437847239f85bf015cb97b289a498c8eecc409cf4c9efdf", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/11df25f993cb118c4941a031ec184324420bb2c1194392eb75cb57a", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/17faee1cb9d8ce82f3f3729a88209b77ee21cdefc3901c01a42c12b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/19b44810ae1b19b6daaeaf309aba39443d8ea20f4b5697d98ada9c4", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1b2a398b54d580f36b9e7aa90aff47f4458246c9702af95b3e3eedd", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1ba39710bf0002fcd1b4ae32c186e4d9850de61df66348807e4dbbb", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/21b95b6ca7b2ebdff316ff0e6aa90fda5c3c53e73afd2e12a6762f5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/22ef3eb27abeeba5119a9144ba3d19c5574c2e78fcecb4055416870", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/23f4e6ae7d7a6caa46a9c1b65b063d22b901ed4d393ae7255b97108", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/28f286a1f4fdade5da06fd1c77b55246a5a0e3bdf0058986c3978b9", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2a2c1677affd422ddec11f0307fdff30e9e4449193dd361f00b8688", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2a7db7e6ea2f28dc203c3d9fe705dbdf8c6e0fc4494266ef3d5bb82", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2e98d52e47afb8f66c6bf118bc324e9bb3c39f3129848a95d2dd354", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/34e3a67b3793cc1de28b94b7bcaad17357e4c62840f46b96a2ef72f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3649157b319b93597b226c80fdb18dc932fefe4e2f0ad68fc90cd73", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3acf7e9062cda14dbca2b9ead16e4fe16c8c6e47c7da27311774b0f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/43aa33dcaa12c7d1109605c606e26833a3dabae1f1d80a7f80bfc25", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/45fab2e6c7a4b42648c83da7a9d39682a53e1299b1d7665dcaf05dc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/46a4b0e49b343bb650d4830546f09ac2456eaf577c7ba347aa0d487", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/46d03c46b5bcc0fa5e079977e59ec72c94d5f6d940595931630e4a6", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/47ab7b4169682d8049c4fec8ef2ff36e707cef4b4612159cbada8aa", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/48fc39dc020f3ba529e2b919e4620d51e67b1429c5d4f2d155b180a", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/494a4e9cab3c1624d56444b22ea815fda4d7570586f0321c69739da", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4995017af290bd85a648ba269cb458c27f68b123da745621e3cb091", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4b6715dec0c1800a67dcd801569d7839f8f97eac6f54ad2f0c94886", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4b7db0925cdac3250124df75c63c0f06898f1910dae550fbd2e9061", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5049ceffe132c785e2a015a968d87c13159e606fad1ad9cbc62b358", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/51213c5730b06a791ec8811ecaa14633fdb317ab852e1215a756209", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/525f807e35ac3055de13a7dc674a90cca90cf13b68512f005caff2f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/555450f57c144cdaab39a6a003ec4dfeea8c366fe85264e14fd4d99", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5853e6f6d2ea2d0f10ed9a6608c57823060ea24ed72b7d026fa54b6", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5ca4abaee41673c12acc7ecf4775747c63a732b2b1bb12462204b95", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/61c88d2a02a5f3c96f9a02c0d70c09a79464585d7b1eb931190e3b5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6bb99323506670f543a0c964ea698496650f025857c0e8c2127b86b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/71be493ffc99ca6017113621c711b398a81cde60d694dd234b70ba2", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/73d73c77e3efd7059a47f96e8936ea28e4c7d0d5b1c749f54584826", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/75334dd0968e203421297da124d3183c130c387d47efa5e0c98f0ff", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/777eff5d0297b9b4f462efd60ec950be9e42e0a988952ee89bcc3fe", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/79eb1bb70940b12d684dac05c344d5cbb058479bb2b954df3a00d11", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7f586bd8868962c82d73040769fc6011b6b8bca11d1357bc179789c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/800657a6f7d6c35afdbd747660b7464741ac8f3a48e9408a90cc35c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/85ddb1069d2d941350bf0ff2a626122a7325e597df6b816718b16eb", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/87e97b0f005fbb491daa7bdba1d67ce33e48a5cc732b1b716865d77", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/89998523f08660601d1918cfdac739fab0c7b8c37400e15f8d4ad64", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8a18b5638a3266895ae1c3f4d66e4aa326a4baceaf6831fde442a01", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8b3884cfef54f3d3b47ce37d29a6a9d2eece186849ef1c01f04ca81", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/905e35ecb9aaae2d142a06a47505db2e1c797bdfac460bafffcaaba", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/90ae77291106d548e94ba37eeac26a8938a0be279effe3b2d9c6ecb", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/992ea0e3791bcf716e2fa595cd0d2725409e9da0d818e944315da99", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9ec2bf294ce21f330043aabe5046fac340804924b647c98785d7ecf", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a58c611437c35ad737cb5112fe31fd7a8dd4544c9dee02176c5c4dc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a654fe73aa459707787c108b38eb92ac591eb6a90cfdeb089f8202f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a7abb85e944f3a56d47fca4bb30009597680249fac8fb7ea972d432", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/aa482ebc2cbcd09f9d55bd4c173e988f9e02d222974fd8c301428d4", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ab8a63f607cc2ebc853d31423f43080f72646f837d241f6242897f8", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ab8f3be3d7e1551e624c17b952896b77fb24b5c0abcef88cfbd03d5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b0411a90ac04787ae530f02339f20acb957454bf695f407250e2e13", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b20d34f6b0f231be654f8ee5fdc7a40ac2d7b48a12bdfe00d47e5b6", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b34500ed5ccf33e8e4fe5334aa95de6eb9ef4282c856d5c74d7e032", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b3fac87c2bf49e51c14cea11f636f3e974a55a05329681dc400a233", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b439664b724e642f726f586c7b30bb6bfefab353a0d53b92341e471", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b8ca16dad4455a32e647e9b8e7bae77bf555609f53215232741a6c9", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ba1f42191ed237008d950d98b5fa42182b110fd2e55e5a229752436", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ba46017a22ef1a99b15edc2c42784e1095de1e41e1632917a73a3a8", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ba5f1f44a55cadcfc1156de586942ed222410d4e1275e95c1ca9ea0", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/be385780b14ca9c69e42663809f65f4714e8a67166cadea68920ae5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c1f1317cc62bea6cbc90469c21c94739dc36ce1d7c95a539840cc22", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c2ef5dc50c63408591f2d7439f2edb305ced0795c05f27301ccface", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c5df231629714c038ed99cd43faa31b5deef9feb7a3b27d61532ca6", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c60ab73e97a74b00d0fe4a69acd8b7a4d567a97d2c832bf602bb242", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ca2d87f833a48c388c3c217a966c33e1780f4d3d1830c608b5a4bcc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/cd5776b3fe8da10ad0ace379e47c430526f391c6b1a607bf8735a35", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ced31f04f4d3af3d857578e42044d1b4e6353aa564460ad9173a476", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/cf39eeaf70cb33d8becfcfa17010ad290fcd61162ef27eb4c99358c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d79e1d30425110df8b0ad8ee0784a5c373e28a28f844c07f727ab4a", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/dcb070eef5b38a1524ec85b80e5a85358f59bbf75481299fb74b5cd", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/dfa477768e7420c70329074dae556120cd97dab866b79cda440f20d", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e20bf5d0f4879aa9e719d46d74a89f3c3802a1db9d7c9681382e8b9", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e6995f7b698eca2061b8505237e7490964b4bae1dbee6056c0db6b5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e7dd84d08e262bdefc7ec6dae9b021cb735066cedb120a36183afdd", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e9d46019e34634cb8bd2b6994301693d698bedde508e5750f1e76a1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ea9354d5f54bcb6d49ee447ecf5471158edd2187dbbb23d2ae850a0", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/eae22a210e01d5b8c32a73abcf50bcaa26865a26a20a9ac4d1df027", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f09517a752de3efdf48696afa4fb669366f245ee4a76bcb9139d72c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/4b4f0d75-c66", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/WangShuxiong/Human_Epi", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5df423f193763a4765517151218287add65f808286ecf5c7354dfa6", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE169396", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41586-021-04221-8", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0963f4fe8992fd9b76a7f6d73531b070d35139bc7db45d7d7ccfc2d", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0cf2b7d43cea4c6abd87bc43595706af5b3839d3f3ab86a919b417e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1198169cc927a4853a5ec8c98db414395b8f02359875004df6c0353", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/203198ffbcb8d8638a49cca17215d54f3b1626e2298824fd9334aaf", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4a58e0cea3e5082612d3eb69a1c8fdef468e5eb0373439870108b7f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/60ad0af9d8b8c3fa58f08bbda80c946c79e29830bf74c9362d5acca", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6e0c967241954f9cf02f8aba54a49ae6df1c4dd3e3c0a99104a1e5c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/70c491105623fe5274ebba6cac7f93031b672f3f100000b6bd41f82", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/781acc76034feff65eac95db6115c3e503aa8ad92eadc12b8e71514", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7cd4f1aed9acd3421e6fd6857fe98de6bafaadf4ce7521c7af7707a", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/82e87c83dd5ef0a00664ea68c4e3f0efe0923fc62634361caa0bcba", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8740058bd0c177d23864345f5247963690b8c91f02353a5b92b7436", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8fb036c7bcef77bd35d58ba90ceda2a69f17457a4a9c01e866f7e9f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/92b9ad115ae71efca56259637f464306b525628d8b3cccdc19a628a", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a487c00f33739e452a83ea5538a6166d8745338efefe5a42251861e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c2809fbac280e72481535649a8ecfd304d2839c7f5123f2a248a80b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d9f56e0fd53b83c0a5a9ff445d71bade1800ce7d2cf681f96d6b70d", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/da39b420cbd982134ba4117d8d3e311076c70c349c4a06b56bd98fb", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e5145c447d927ad70598c167028f9f6a1037f25d30fb17612529995", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/5292ea08-fe0", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/f9c77cc5-9b9", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP275814", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/496cd2c2065b763fc533da075f2df4797b529a130ba63c9752bf350", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/b8dd595d-a42", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.nature.com/articles/s41467-020-20358-y", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP339818", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE172180", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/3cf36f7c-cf7", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE188478", + "clicks": 0, + "change": -1.0 + }, + { + "link": "http://www.jasonspencelab.com/protocols", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/123ca712-6d4", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41587-020-00796-1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cellxgene.cziscience.com/collections/ced320a1-29f3-47c1-a735-513c7084d508;%20https://github.", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://duos.org/dataset/DUOS-000661", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://ega-archive.org/studies/EGAS00001003751", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/bbf7079845f652de3e20411cce8dd867d8cf3cbb596756544758029", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/085940d2-943", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/8e02b8fa-592", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/135944b5e608464e25a13fc5dcf5ec1c5f9a359345ee4956fab1882", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2892eee5cd629e5bbf27fd31f8eca3b96107593f14fbafeb45740ed", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2d8aeb3aac4e1d226332e17efcda0f9daf17d1d0c40731d42b196de", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/30e8088a7cff9cacf24066e174cc22c0e8dcb8c5c6c4b545a197152", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/30f616f1554a72a831225be0bd1e51692f28f520174fd3cab7e574c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3eb70c268fe3e4367ff10dcd3f3fb7f3658364ed5cdf5c097d1a1ae", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3f87b2e563d038a34154389fbc7bd88729ea35b630eedbe53837b3d", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/61cdce58048bec5e5d3623d0009460cafe049015fb32c8b7ab27c7d", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/646ced8865fcd10a258fb5e9942d68e71aa95e8ed63f695e5e6d5f3", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6fa1521fcb12ccef153885e1c8eb11176115c5b39f279ced856f9d4", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/76dfc9f7d9099697b3068b43469c680cd2b4815f7582f92e5c5948e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/851183cb466247a258e8e89fe62c7552772533110a2782da970a4dd", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8eb1ca0a4607cf78f9e97e5bff188928632c7d48b391664126753e7", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8fba0be6e4835836057e5b832add31766aa08a6c356b8d18c55fc88", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/92a7e65e2685e9c7ce022884d7a39e1a4d32017e10726609a0ce342", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a25ac2ce1ce4592942e518aeb2462380ad108b8cf3dad046f680368", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/be355d83245d8f2d451f8e14464f9dbabe08db1023d3a1b3f5c1144", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d9c9fc2d97d4fff3b22c5447c7facdd3c0e726bc241b1d51f12a3ca", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/dea5c54625feab74b6d37cced9762aa1c84d9279601feb3a25e85ef", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ec5742f3bd2e526048240fed08b6a2b9d0984c67859e36f708371f6", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f3b0f73e263dcfe064a138ca026adf3eabec4aa3dcfe049ef747779", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ffff18e8b0327dd69c1a6920a8d68805ca59e80629576affe836fcd", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/b561f984-828", + "clicks": 0, + "change": -1.0 + }, + { + "link": "http://brain.listerlab.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE168408", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/31712411/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41587-020-0602-4", + "clicks": 0, + "change": -1.0 + }, + { + "link": "http://spatial.libd.org/spatialLIBD/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE108291", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/tgen/banovichlab/tree/master/ILD_eQTL", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1073/pnas.2103240118", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/dcb46ea6-2ba", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA843078", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP377456", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/c6bb63dc-e5c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/Botnar-MSK-Atlas/hamstring_atlas", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC9096112/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1016/j.cmet.2024.04.017", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0680f8bd6e049a730ca6329a8618deaa6c0335702cab9c4751e32d8", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/379b82811a856e613a99e0280a94c58175b2643d235d940357baff2", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/53e8fe1eea89067951a8bb2aeb483e03bdc93cf68ebc298cd6d1b64", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1016/j.cmet.2023.10.001", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE198833", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/bb140a39-22b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "http://catlas.org/humanheart", + "clicks": 0, + "change": -1.0 + }, + { + "link": "http://ns104190.ip-147-135-44.us/data_CARE_portal/snATAC/ucsc_browser/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA698273", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA698274", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pubmed/27693023", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2f253ffb1f6d54f6bb259e862195f5c20ea3f13e00471b9864ff927", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/df1dc0f0d0fc9d20b8fdc63b1c4e57993937bed3aa5bb3252923555", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/teresho4/scRNA-seq_atlas_Hs_PBMC_aging", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/8e64b624-f14", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pubmed/30257215", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE167363", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE129611", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/467225v1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/e89965e9-f5b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1164/rccm.202207-1384oc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE162864", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/34354210/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1073/pnas.2404775121", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1113/JP287812", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001002927", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-11268", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1126/scitranslmed.abh2624", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE168453", + "clicks": 0, + "change": -1.0 + }, + { + "link": "http://immunology.sciencemag.org/content/3/19/eaan8664.long", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE162183", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/8dc43555-f45", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://heartcellatlas.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c219a95d9667ddc3e6f3014653082cc0a24d88287eb0ea7b41e45a5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ea70710073a682c20ade8d937b4b6c0fa963d3876534b35e18a250b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41422-020-00455-9", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1016/j.xgen.2022.100108", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/b933f9db-761", + "clicks": 0, + "change": -1.0 + }, + { + "link": "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE107nnn/GSE107746/suppl/GSE107746_Folliculogenesis_FPKM.log2", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE107746", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/a9d446b1-dbf", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/3ad95735-a03", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6634992/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1016/j.molcel.2021.10.013", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA699347", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA1118775", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE268807", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1101/2021.12.22.473889", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA763200", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP337049", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP337050", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/73a01743-d02", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.nature.com/articles/s41467-020-17876-0", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cells.ucsc.edu/?ds=retina-atac", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2ab70aa83499d3e4038df01c5574ad77af7b3948882022876b08f43", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e666bcd7985ea103f0ed596f8efc0ecf481f6846250bf8422de35ac", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/privacy", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/2c98d7e4-f6b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/4343d6f5-f0f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/79f829ad-5e7", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/7b81b995-b53", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2ef59f31c6ca0f84586c0b3eafacec71aac6517496dedc7a39298ed", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/85571910b40181ae240fac6f0ebd4239eaad5d12cc22873ee653383", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/b5ceb94e-9a1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S2667237522002156", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2c958f8ee3a8c07bcce375d0c7d214cad3620535638d349b95637d2", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d56dffb6e07d368ef3977b03c3f947ff1f5a7ce9f4f7afc9f3342af", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.nature.com/articles/s41591-020-0844-1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP295708", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://insight.jci.org/articles/view/150861/sd/1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA412220", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP118904", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE104276", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/e10ac84d-7ef", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41587-023-01734-7", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1a944489a258490aafe754c1ffca69d0fa070ce9e37daf38960b6b5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b36501917ca54a7dfe7a6039a719296f7d5ccca011bd046dd108b30", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e2018997561c4e6014b908a161f5a683d8ae78545e000d69a597fc2", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4e9beebf6842e6ba7f97df96488da6833c773f625810378c8fad4f7", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/c1397b84-ea4", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4411dfe4885e70760f0223fc52309db7c0409ea72bc9e5cac641868", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/44b361fc9148cf43bb8583fbf409aea3c55d1bab331fd9a57b4d0dc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/77acdff65ccd420cec85406fbd431031fcaee3087f46f412750b497", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b55b2c3f4def6f2a66027a45f453ddf46ff81f5179e7943422277da", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b782c2da8c0a8c71d3324c22d5764f7a11e82bae474649a7a228f4b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/fd74213bbfb1e69fbedbe0607341fa12da6b598718ebea894152640", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1016/j.stem.2020.11.006", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA602526", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP243768", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE162122", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/bjstewart1/kidney_sc_immune", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://science.sciencemag.org/content/365/6460/1461", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ebi.ac.uk/ega/studies/EGAS00001002325", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ebi.ac.uk/ega/studies/EGAS0000100255", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5010b533bfd9311747c1dbcfe5bb44e023effc0a84d685965483528", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/75e27f6ce8b8f4e89470b34dc048736a19024c92c6dc6754f503313", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/3c714786-93d", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/b2f91049-254", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/ff5a598b-34c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1165/rcmb.2021-0555OC", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.medrxiv.org/content/10.1101/2020.12.03.20242412v1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/a2f1bb2f-e28", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://broadinstitute.github.io/warp/docs/Pipelines/Optimus_Pipeline/README/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:ERP123138", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d38c4fe7ef2bfb28f42854e447ba65929bbcd89023211c1bff0e346", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ee31af654eb2008c8748875b117ee7eecd70ad63ed93811144fb446", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/31a8ea72-d93", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/ea0e63f2-63f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE161918", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ebi.ac.uk/gxa/sc/experiments/E-MTAB-5061/Results", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c29ae811549af063f760fd50eca313a8598d0aa01b1b4ef0a283988", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1016/j.devcel.2022.02.018", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/TCherryLab/Retina-Multiomic-Analysis", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/ventolab/MFI", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJEB59613", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJEB59723", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.reproductivecellatlas.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/LorenzoDallOlio/BRAQUE.git", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-10367", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-10514", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-8813", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/biostudies:S-SUBS5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:ERP119958", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:ERP129376", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:ERP160032", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJEB36736", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJEB45293", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/78a2858f2da2ce9386e729ee98045e64a440d24d9721c4397cee56d", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9d516612583bb1d5135a558d057ed459c2071186f3b40458312f608", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE129605", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pubmed/30848683", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA611563", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP252065", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/fe8c8d0137dcfbeefe6233a75177cc8ff9ccd6ba38200392f10e774", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/30858339/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41586-020-03148-w", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/066fa3123907d975aa139859beefead90b2aed2d3ee1228ba93cd27", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/fba234798a5e01cf599ec12df8f67f2871806beb9c7647c4b9965bc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA683899", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE162950", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://bphipson.github.io/Human_Development_snRNAseq/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://evangelynsim.github.io/Human_Development_RNAseq_bulk/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://asthma.cellgeni.sanger.ac.uk/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.nature.com/articles/s41591-022-01959-0#Abs1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0c0a537ce9dd1549601d5f81d8370515fcbb7d395360e2bf3e69037", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0cd373e334cf13419d33714f25ff8b5ff78a5b53220734fe8158519", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2fa45ca581d3fd6fb688feabf85428651e80c7deb0df0a674eeda1e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/32afc0462ef32210082a2bbc26a5fecde5555f68c04273b32c75196", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/42cc8c0ecd633e941ac58627179f7e5a66fd6783b39d514c4dae2d9", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4c07047032bce618d6b3b70be709be1f8f971068acf4e965ec1c5b7", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/67e1706539b2b227e7f624c0f57cf39b4f7f522b22f11890d5954c1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6ab0bd02274d56a71d14e626ce1e22af6eb4f1f642c48b16a86fece", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7ab2be9979e15ea721e3ee280ecb9da6692eccc4bb9ae7096934a61", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7b69ad7914bd036e821ed96db000ab8b14dd493fe44122369783e76", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8571a57e63ad0a393c7a081ae1f522cd924805c1efe0acb01053fc0", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/af0b20e4ffce804425dfa922753120b3bd9f66e188bae6999bf02b9", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/b9333bab98edb07cdce30069736b2ce91860b762658f20b16768609", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/bdc9d6a79024644af36e29a63716886b37ee7e53f5a1e1784bcddc1", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/cda04cbe7f02ea7231441dcb3e292c3977a751c19535e3b42d9bb35", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d66c7b98dbd5b30e7b932499a270aa298aa68b4e49ce0964e56fe54", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/db4218708b17eacb9c6c48744a16c56356f4e2e336e31398babf69e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/deb6d1424f9196867af1fa28059579f51874a906bd2e745739108eb", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/e2c43d700fddd4d70288f4cbf019520308f5c73b0b91ed7df4cf3b4", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/ed00b3fabd4a23335d7fc972b798577b6e47f6ad6347f1283bdf7ac", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f7cb6c3016b8a01d740b1539a3b5ba353272a2812af8843a7e28c1e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE226314", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/99646c4f32bdf149ac04b93a7709516e388d17c03dfc27550fdeda7", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-8581", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJEB36131", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/0e97356c-c72", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/151fc55d6d41488c591d9a1e773a5e42f80b30bb8130a310d17ec1e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE162632", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/01fe1626-b49", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/e8ebba31-2c0", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA540611", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:SRP194375", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE130560", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA764714", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/598b6f2fc8a2cb5383a64e4010c72735a705642c4c459911981a69d", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJEB31843", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/054dd21f6218f8629c6616639749229830e755b113ce34210e2f7e0", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6a36b00963bdff2782f8c0b7fc0aafcb11fc5cf89ff2ff49c7a1a70", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8e6e9083a978eea4c6f49a71fa30cb7c580ee67ea1e4dc8ac70693d", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d07b5caeaab1b094adf6859b9023a969d5e60719429e97a84eab3ae", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/cf66b9e45f33ce62b0fbc2fa2db269efaed1567af91914ed6631f7b", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/fc33acf7-d8c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE171314", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.frontiersin.org/articles/10.3389/fimmu.2021.645988/full#supplementary-material", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2021.04.05.438347v2.full.pdf", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/a988a43bf9882a5a15b7934a1f0369a566715e174a1bf921b557b48", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1016/j.celrep.2023.112086", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ega.study:EGAS00001003779", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:ERP117727", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/647a92e1af03a4c9e0139c2b608d0ca4427e85c88b47fb76fa635cf", + "clicks": 0, + "change": -1.0 + }, + { + "link": "http://dx.doi.org/10.6019/PXD011655", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://github.com/agneantanaviciute/colonicepithelium", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE163431", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41586-022-04989-3", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE203273", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://singlecell.broadinstitute.org/single_cell/study/SCP1884/human-cd-atlas-study-between-colon-a", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/72e36c48d141692a7efd09da78c2c242486119a1870f19f05c1ed8e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/f3d972c8-048", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0c969d81a467bcc188700e390f52d707095e7af97cf38170c179478", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0f522910e560d20c7cb5575fea2041c2fd56b99537309401dff0844", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1c3032c8157259247c695077bd0eee8ed00d4f2de5cd54680b2fa3e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/4c239b858d494b9cbd79f24486c7e6e008884264d0f09297ebbb22a", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/5ab0882e67fe0a96a131d03893e17b3c695c6a74bf16b0d030a6a6d", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6812e02924029aa99bf39228d0d0c691ea7622026979d231f1eb6d8", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/830383991a1eb1c86f586564f2bb3f1989551e4a08906f0ff97ce8c", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/91794482599b5a6620fe71228428a6e26efa0ce763874db7adb981f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9ca3cc10ffc27ef57abcebbfbfa27a7bbc0bf2deae9b1942b481375", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/aa3dae2781cf0e91b3d2d13fdf71c0f716c88cc8368f782e8e118d3", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/bade260e7c8abe4ee7e57e9d006aa21b2e2c52407470c2963716ffa", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/cb4b24b5de7c13fb61faa49235b98e41e02086e60af59002186aa1f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/f348bdcd878055beca8ee946bf21c11832bccbe63442f4e0e715dd9", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/079915ac-3eb", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/4ffc68dc-a91", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/6acd9ee3-549", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/b402b8f3-196", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/31474513/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/31253076/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/about/data-use-agreement", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/c69a822a-7c9", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.pnas.org/content/pnas/112/51/15672.full.pdf", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1f494ff3d86aeccc6584fb24ced29bef4225ead4d3a80826bc64cdd", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/6c8d6711-6bd", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://singlecell.broadinstitute.org/single_cell/study/SCP1219%20;%20https://duos.broadinstitute.or", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE164829", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ahajournals.org/doi/10.1161/CIRCULATIONAHA.120.052318", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1126/science.aat1699", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/92cbcc82-607", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.nature.com/articles/s41591-021-01296-8", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pubmed/31768052", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41588-024-02048-3", + "clicks": 0, + "change": -1.0 + }, + { + "link": "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE109nnn/GSE109774/suppl/GSE109774_Lung.tar.gz", + "clicks": 0, + "change": -1.0 + }, + { + "link": "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE109nnn/GSE109774/suppl/GSE109774_Mammary.tar.gz", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/6623ac30e620eb242cccf5ae04d5c53c99badcdb42aa903cf15343a", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/81138f3d9f9c8605dac457a98ee209ee6e5133cba25555a6a0541d9", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/88e1a4730670714880b4535f3d28c5d00b64f66bd998e571db29a80", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6432662/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC9151700/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1101/2023.08.08.551504", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41591-021-01332-7", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE150674", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.cell.com/cell-stem-cell/fulltext/S1934-5909(19)30523-5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/474c70b56b6b1ad393c3d711751ad29d30c234142bec20ea54f3a40", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8ff2e9805a62b4cd7e3fab0d41068aa5bbcc3b437f4384fa25cb43e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1016/j.cell.2020.06.026", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE139324", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1038/s41586-022-04541-3", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1164/rccm.202305-0924OC", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8762313/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/58e7c0fdb83cc88ef761ad8f6afa44cd934fca35a8a3acc758e7666", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/d6612bd83a860e7afb88494fe8ca467fa72d9a673c52bb6d85ac5f7", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/9728579912e86c419c288ebdfd4f92e15da5d6ef13ee27c1ec5d44e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/d5ab5dc7-16f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/d8a0ca1f-b5a", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE192693", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE163633", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S2211124718304789", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.sciencedirect.com/science/article/pii/S1074761320305045?via%3Dihub", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE180670", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://cells-test.gi.ucsc.edu/?ds=early-brain", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1164/rccm.201911-2199oc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/biostudies:S-SUBS15", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:ERP124005", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/76a6548089867687461603ed0031ba02f9203885cd8a623b7497bdc", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/c6c1b29e8737085d89f2af35c23fb9ce0e189369e65061f18cfe853", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/094c7956-955", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/70a4761f-903", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/822065f4-588", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/b764c158-e1d", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/29913bc1-c2e", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/a0c7324d-351", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:PRJNA704101", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/347533b0-a68", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1016/j.immuni.2023.01.032", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/arrayexpress:E-MTAB-6678", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:ERP107748", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/02f3305b58aab30939671272f14081da51c27a94c0757ed64e4c2ff", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/046df63fdd8ae6739bf3e974dc51a993eaafb2ebefcf77f074e7244", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/068d9d502c2161f7b3b8b39a66f806ed17f4dbeb3df8d2447b998ba", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0bfc9ee360000886a69770d46f9c25aabadf44cd97bde39029e606f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/0e7191bd2196a1661d063522a5f9bf5213707c7ec27cf137d2f9ba2", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/2a402141c727dfad80e6a96c00c7a7e6df83c7c22d576890d3513d3", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/7a8eeb83151b5e1efb36d3f1076ced757912a98af4006070cd37bc4", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/8da17524b057fc7338623bbfee7eba20021d95117208f239d51a0c4", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/eeb4118f334efdfa8e11e0763c86c9dcdf10dc03ae2cd92180b22b5", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/arrayexpress:E-GEOD-84133", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE84133", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://data.humancellatlas.org/guides/consumer-vignettes/matrices", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/1043a0d8c057f026a35cec7148466a48620aed8bee5a53b05caa5b6", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/269c3dc58aa54eaa47a2abf18973ba76c01041588b6090b86275e9a", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/3275cd65ce9af80e915b4a44f332dc241677aa52eb128ea32afa072", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://doi.org/10.1126/sciimmunol.abk1741", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE118127", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6639403/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://creativecommons.org/licenses/by/4.0/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE176067", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE176171", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.humancellatlas.org/data-release-policy/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://humancellatlas.s3.amazonaws.com/file/cb4dd51b63005a84c4e21b2e03ffa551b268cad1c66d791fcdbc00f", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/ena.embl:ERP137429", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/4144dea2-e0e", + "clicks": 0, + "change": -1.0 + } +] \ No newline at end of file diff --git a/gh-pages/hca-explorer/data/pageviews.json b/gh-pages/hca-explorer/data/pageviews.json new file mode 100644 index 000000000..11622cf3e --- /dev/null +++ b/gh-pages/hca-explorer/data/pageviews.json @@ -0,0 +1,11332 @@ +[ + { + "page": "/projects", + "views": 7818, + "change": 0.1080212387947137 + }, + { + "page": "/", + "views": 7293, + "change": 0.0516005438141145 + }, + { + "page": "/hca-bio-networks/lung/atlases/lung-v1-0", + "views": 1099, + "change": 0.0006503642039543678 + }, + { + "page": "/hca-bio-networks/nervous-system/atlases/brain-v1-0", + "views": 812, + "change": 0.13884992987377287 + }, + { + "page": "/hca-bio-networks/lung", + "views": 705, + "change": 0.1370967741935485 + }, + { + "page": "/samples", + "views": 698, + "change": 0.23617963314358015 + }, + { + "page": "/hca-bio-networks/nervous-system", + "views": 584, + "change": 0.002821047467189919 + }, + { + "page": "/login", + "views": 552, + "change": 0.2850016627868308 + }, + { + "page": "/hca-bio-networks/eye/atlases/retina-v1-0", + "views": 494, + "change": -0.03629903156134617 + }, + { + "page": "/hca-bio-networks/eye", + "views": 448, + "change": 0.027018175863762872 + }, + { + "page": "/hca-bio-networks", + "views": 432, + "change": 0.046095303986854574 + }, + { + "page": "/hca-bio-networks/immune", + "views": 362, + "change": -0.04115031690473936 + }, + { + "page": "/files", + "views": 334, + "change": 0.25177352429393673 + }, + { + "page": "/projects/cc95ff89-2e68-4a08-a234-480eca21ce79", + "views": 326, + "change": 0.08653731698607303 + }, + { + "page": "/guides", + "views": 315, + "change": 0.22109926623286724 + }, + { + "page": "/hca-bio-networks/gut", + "views": 311, + "change": 0.15598035311296954 + }, + { + "page": "/search", + "views": 300, + "change": 0.4726507713884993 + }, + { + "page": "/hca-bio-networks/heart", + "views": 294, + "change": 0.04546609093218179 + }, + { + "page": "/hca-bio-networks/organoid", + "views": 275, + "change": -0.11606015382849266 + }, + { + "page": "/hca-bio-networks/adipose", + "views": 258, + "change": -0.02496963152922116 + }, + { + "page": "/hca-bio-networks/liver", + "views": 220, + "change": 0.48290804044294644 + }, + { + "page": "/projects/c1810dbc-16d2-45c3-b45e-3e675f88d87b/get-curl-command", + "views": 203, + "change": 6.052109181141439 + }, + { + "page": "/hca-bio-networks/skin", + "views": 188, + "change": 0.1026392961876832 + }, + { + "page": "/hca-bio-networks/lung/atlases/lung-v1-0/datasets", + "views": 182, + "change": 0.284274193548387 + }, + { + "page": "/metadata", + "views": 181, + "change": 0.3184183142559833 + }, + { + "page": "/hca-bio-networks/kidney", + "views": 170, + "change": 0.2483608707054814 + }, + { + "page": "/export", + "views": 166, + "change": 1.0824372759856633 + }, + { + "page": "/projects/cc95ff89-2e68-4a08-a234-480eca21ce79/get-curl-command", + "views": 152, + "change": 0.27120669056152935 + }, + { + "page": "/projects/e9f36305-d857-44a3-93f0-df4e6007dc97", + "views": 150, + "change": 0.1781206171107994 + }, + { + "page": "/contribute", + "views": 148, + "change": 0.06941935483870965 + }, + { + "page": "/hca-bio-networks/breast", + "views": 142, + "change": -0.035653650254668934 + }, + { + "page": "/projects/f0f89c14-7460-4bab-9d42-22228a91f185", + "views": 124, + "change": 0.30232558139534893 + }, + { + "page": "/projects/35d5b057-3daf-4ccd-8112-196194598893", + "views": 120, + "change": 0.7204301075268817 + }, + { + "page": "/projects/cc95ff89-2e68-4a08-a234-480eca21ce79/project-metadata", + "views": 113, + "change": 0.30851943755169553 + }, + { + "page": "/projects/cc95ff89-2e68-4a08-a234-480eca21ce79/project-matrices", + "views": 111, + "change": 0.336774193548387 + }, + { + "page": "/hca-bio-networks/development", + "views": 108, + "change": -0.09677419354838712 + }, + { + "page": "/hca-bio-networks/musculoskeletal", + "views": 107, + "change": 0.2080645161290322 + }, + { + "page": "/dcp-updates", + "views": 104, + "change": 0.04372759856630837 + }, + { + "page": "/projects/10201832-7c73-4033-9b65-3ef13d81656a", + "views": 104, + "change": -0.2544802867383512 + }, + { + "page": "/projects/76bc0e97-8cae-43d4-a647-477a13be47f9", + "views": 104, + "change": 2.3548387096774195 + }, + { + "page": "/projects/091cf39b-01bc-42e5-9437-f419a66c8a45", + "views": 104, + "change": 0.1317528177225029 + }, + { + "page": "/guides/consumer-vignettes/matrices", + "views": 102, + "change": 0.08387096774193536 + }, + { + "page": "/metadata/cell-annotation", + "views": 102, + "change": 0.2795698924731185 + }, + { + "page": "/projects/ad98d3cd-26fb-4ee3-99c9-8a2ab085e737", + "views": 99, + "change": -0.15642118076688982 + }, + { + "page": "/hca-bio-networks/pancreas", + "views": 98, + "change": -0.06825127334465197 + }, + { + "page": "/hca-bio-networks/reproduction", + "views": 98, + "change": -0.172746457642448 + }, + { + "page": "/hca-bio-networks/nervous-system/atlases/cortex-v1-0", + "views": 98, + "change": 0.26451612903225796 + }, + { + "page": "/projects/a9301beb-e9fa-42fe-b75c-84e8a460c733", + "views": 97, + "change": -0.11502117953730862 + }, + { + "page": "/metadata/tier-1", + "views": 97, + "change": 0.2697522206638616 + }, + { + "page": "/apis", + "views": 94, + "change": 0.16305788775961116 + }, + { + "page": "/projects/cfece4d2-f18d-44ad-a46a-42bbcb5cb3b7", + "views": 94, + "change": 0.24857685009487662 + }, + { + "page": "/hca-bio-networks/organoid/atlases/organoid-neural-v1-0", + "views": 90, + "change": 0.0289914250714578 + }, + { + "page": "/projects/6179c38c-9987-4e7c-a4bb-d34cf33a3c3f", + "views": 82, + "change": 0.9490662139219017 + }, + { + "page": "/projects/9fc0064b-84ce-40a5-a768-e6eb3d364ee0", + "views": 80, + "change": -0.5084485407066053 + }, + { + "page": "/projects/4d6f6c96-2a83-43d8-8fe1-0f53bffd4674", + "views": 79, + "change": 0.019354838709677358 + }, + { + "page": "/hca-bio-networks/nervous-system/atlases/brain-v1-0/datasets", + "views": 77, + "change": 0.3636938646426313 + }, + { + "page": "/projects/1662accf-0e0c-48c4-9314-5aba063f2220", + "views": 76, + "change": -0.4373347435219461 + }, + { + "page": "/projects/16241d82-3119-4bdd-bba5-5097c0591ba0", + "views": 75, + "change": 1.6054590570719602 + }, + { + "page": "/privacy", + "views": 74, + "change": -0.031323048153342636 + }, + { + "page": "/hca-bio-networks/organoid/atlases/organoid-endoderm-v1-0", + "views": 74, + "change": 0.028287841191066976 + }, + { + "page": "/projects/c1810dbc-16d2-45c3-b45e-3e675f88d87b", + "views": 74, + "change": 0.028287841191066976 + }, + { + "page": "/projects/e9f36305-d857-44a3-93f0-df4e6007dc97/get-curl-command", + "views": 73, + "change": -0.030360531309297945 + }, + { + "page": "/hca-bio-networks/oral-and-craniofacial", + "views": 70, + "change": 0.31720430107526876 + }, + { + "page": "/projects/f2078d5f-2e7d-4844-8552-f7c41a231e52", + "views": 70, + "change": 0.036488630354309715 + }, + { + "page": "/projects/6936da41-3692-46bb-bca1-cd0f507991e9", + "views": 69, + "change": -0.055718475073313734 + }, + { + "page": "/projects/923d3231-7295-4184-b3f6-c3082766a8c7", + "views": 69, + "change": 0.4164222873900294 + }, + { + "page": "/projects/9c20a245-f2c0-43ae-82c9-2232ec6b594f", + "views": 68, + "change": 0.11671554252199412 + }, + { + "page": "/projects/a004b150-1c36-4af6-9bbd-070c06dbc17d", + "views": 68, + "change": 2.4121863799283156 + }, + { + "page": "/projects/a80a63f2-e223-4890-81b0-415855b89abc", + "views": 67, + "change": -0.26199842643587734 + }, + { + "page": "/projects/a39728aa-70a0-4201-b0a2-81b7badf3e71", + "views": 67, + "change": 0.04338153503893216 + }, + { + "page": "/projects/6e465c30-1109-4c16-9fd5-deca9f9a05eb", + "views": 65, + "change": 18.56989247311828 + }, + { + "page": "/projects/4bcc16b5-7a47-45bb-b9c0-be9d5336df2d", + "views": 63, + "change": 0.23702664796633943 + }, + { + "page": "/projects/e255b1c6-1143-4fa6-83a8-528f15b41038", + "views": 62, + "change": -0.4042553191489362 + }, + { + "page": "/projects/f0f89c14-7460-4bab-9d42-22228a91f185/get-curl-command", + "views": 62, + "change": 0.33333333333333326 + }, + { + "page": "/projects/04e4292c-f62f-4098-ae9b-fd69ae002a90", + "views": 60, + "change": 0.7481789802289283 + }, + { + "page": "/projects/c16a754f-5da3-46ed-8c1e-6426af2ef625", + "views": 59, + "change": -0.26999558108705257 + }, + { + "page": "/projects/8a666b76-daaf-4b1f-9414-e4807a1d1e8b", + "views": 59, + "change": 1.1316129032258067 + }, + { + "page": "/projects/1ffa2223-28a6-4133-a5a4-badd00faf4bc", + "views": 59, + "change": 0.33225806451612905 + }, + { + "page": "/export/get-curl-command", + "views": 59, + "change": 1.4222873900293256 + }, + { + "page": "/projects/e9f36305-d857-44a3-93f0-df4e6007dc97/project-metadata", + "views": 58, + "change": 0.49677419354838714 + }, + { + "page": "/projects/c0518445-3b3b-49c6-b8fc-c41daa4eacba", + "views": 57, + "change": 0.1440860215053763 + }, + { + "page": "/projects/896f377c-8e88-463e-82b0-b2a5409d6fe4", + "views": 56, + "change": 0.5806451612903225 + }, + { + "page": "/projects/cfece4d2-f18d-44ad-a46a-42bbcb5cb3b7/get-curl-command", + "views": 56, + "change": 0.8064516129032258 + }, + { + "page": "/projects/e9f36305-d857-44a3-93f0-df4e6007dc97/project-matrices", + "views": 56, + "change": 0.44516129032258056 + }, + { + "page": "/projects/1fac187b-1c3f-41c4-b6b6-6a9a8c0489d1", + "views": 55, + "change": 0.1552888222055515 + }, + { + "page": "/projects/f83165c5-e2ea-4d15-a5cf-33f3550bffde", + "views": 55, + "change": -0.3194874060980999 + }, + { + "page": "/hca-bio-networks/genetic-diversity", + "views": 54, + "change": -0.1131964809384165 + }, + { + "page": "/projects/c7a342eb-777e-4479-95ce-468f5bbcd893", + "views": 53, + "change": 0.45063538611925713 + }, + { + "page": "/projects/455b46e6-d8ea-4611-861e-de720a562ada", + "views": 53, + "change": 0.3677419354838709 + }, + { + "page": "/projects/e0009214-c0a0-4a7b-96e2-d6a83e966ce0", + "views": 52, + "change": 0.11827956989247301 + }, + { + "page": "/projects/f2078d5f-2e7d-4844-8552-f7c41a231e52/get-curl-command", + "views": 51, + "change": 1.093841642228739 + }, + { + "page": "/projects/fde199d2-a841-4ed1-aa65-b9e0af8969b1", + "views": 50, + "change": 0.29032258064516125 + }, + { + "page": "/hca-bio-networks/eye/atlases/retina-v1-0/datasets", + "views": 47, + "change": -0.01275318829707417 + }, + { + "page": "/projects/0cc58d0b-1734-4e1d-9113-b32e52f75e36", + "views": 47, + "change": 0.17921146953405032 + }, + { + "page": "/apis/api-documentation/data-browser-api", + "views": 46, + "change": 0.3402705515088451 + }, + { + "page": "/projects/ad98d3cd-26fb-4ee3-99c9-8a2ab085e737/get-curl-command", + "views": 46, + "change": 0.4838709677419355 + }, + { + "page": "/projects/2245bca0-6563-4e88-ab26-f2b8f60383a7", + "views": 45, + "change": 0.6258064516129034 + }, + { + "page": "/guides/quick-start-guide", + "views": 44, + "change": 0.37041156840934386 + }, + { + "page": "/projects/b10cd314-3e71-4437-9a16-77028d243e81", + "views": 44, + "change": -0.0306845003933911 + }, + { + "page": "/projects/50db6ba4-3986-4d55-86b7-e1a5a888a17b", + "views": 44, + "change": 0.10394265232974909 + }, + { + "page": "/projects/64809a52-f703-4aec-b3a5-eca808a971d0", + "views": 44, + "change": 1.838709677419355 + }, + { + "page": "/projects/f0f89c14-7460-4bab-9d42-22228a91f185/project-metadata", + "views": 43, + "change": -0.13691756272401434 + }, + { + "page": "/projects/16cd6791-2adb-4d0f-8222-0184dada6456", + "views": 43, + "change": -0.1908602150537635 + }, + { + "page": "/projects/c31fa434-c9ed-4263-a9b6-d9ffb9d44005", + "views": 42, + "change": 0.05376344086021523 + }, + { + "page": "/projects/cae461de-ecbd-482f-a5d4-11d607fc12ba", + "views": 42, + "change": -0.11777944486121528 + }, + { + "page": "/projects/4a95101c-9ffc-4f30-a809-f04518a23803", + "views": 41, + "change": -0.025466893039049143 + }, + { + "page": "/projects/e925633f-abd9-486a-81c6-1a6a66891d23", + "views": 41, + "change": 0.157258064516129 + }, + { + "page": "/projects/2fe3c60b-ac1a-4c61-9b59-f6556c0fce63", + "views": 41, + "change": 0.157258064516129 + }, + { + "page": "/projects/cc95ff89-2e68-4a08-a234-480eca21ce79/export-to-terra", + "views": 41, + "change": 0.2344086021505376 + }, + { + "page": "/projects/091cf39b-01bc-42e5-9437-f419a66c8a45/get-curl-command", + "views": 39, + "change": 0.0674486803519061 + }, + { + "page": "/projects/10201832-7c73-4033-9b65-3ef13d81656a/get-curl-command", + "views": 38, + "change": -0.14193548387096777 + }, + { + "page": "/projects/94e4ee09-9b4b-410a-84dc-a751ad36d0df", + "views": 38, + "change": 0.9068100358422941 + }, + { + "page": "/projects/660fc8b5-8fb8-4050-8c57-e6313195bc81", + "views": 38, + "change": 0.22580645161290325 + }, + { + "page": "/projects/896f377c-8e88-463e-82b0-b2a5409d6fe4/get-curl-command", + "views": 38, + "change": 1.2881720430107526 + }, + { + "page": "/projects/957261f7-2bd6-4358-a6ed-24ee080d5cfc", + "views": 38, + "change": -0.04659498207885293 + }, + { + "page": "/projects/daf9d982-7ce6-43f6-ab51-272577290606", + "views": 37, + "change": 0.3367741935483872 + }, + { + "page": "/projects/fc2a0b4e-1e4a-447b-a097-47b398402f37", + "views": 36, + "change": 0.4137447405329593 + }, + { + "page": "/help", + "views": 35, + "change": 0.37447405329593253 + }, + { + "page": "/projects/b3938158-4e8d-4fdb-9e13-9e94270dde16", + "views": 35, + "change": -0.12186379928315405 + }, + { + "page": "/projects/94023a08-611d-4f22-a8c9-90956e091b2e", + "views": 35, + "change": -0.07020872865275152 + }, + { + "page": "/projects/c4077b3c-5c98-4d26-a614-246d12c2e5d7", + "views": 34, + "change": -0.4516129032258065 + }, + { + "page": "/projects/9fc0064b-84ce-40a5-a768-e6eb3d364ee0/get-curl-command", + "views": 34, + "change": -0.5275434243176178 + }, + { + "page": "/projects/4627f43e-a43f-44dd-8c4b-7efddb3f296d", + "views": 34, + "change": -0.4965626652564781 + }, + { + "page": "/projects/abe1a013-af7a-45ed-8c26-f3793c24a1f4", + "views": 33, + "change": -0.3658201784488675 + }, + { + "page": "/hca-bio-networks/kidney/datasets", + "views": 33, + "change": 0.027808676307007785 + }, + { + "page": "/projects/c5f46615-68de-4cf4-bbc2-a0ae10f08243", + "views": 33, + "change": 1.4838709677419355 + }, + { + "page": "/about/data-use-agreement", + "views": 33, + "change": 0.4193548387096775 + }, + { + "page": "/projects/1ebe8c34-454e-4c28-bd71-3a3e8b127be4", + "views": 33, + "change": 0.4193548387096775 + }, + { + "page": "/projects/c41dffbf-ad83-447c-a0e1-13e689d9b258", + "views": 32, + "change": -0.03655913978494629 + }, + { + "page": "/projects/581de139-461f-4875-b408-56453a9082c7", + "views": 32, + "change": -0.14990512333965855 + }, + { + "page": "/projects/091cf39b-01bc-42e5-9437-f419a66c8a45/project-matrices", + "views": 32, + "change": -0.06763787721123826 + }, + { + "page": "/projects/16241d82-3119-4bdd-bba5-5097c0591ba0/get-curl-command", + "views": 32, + "change": 3.129032258064516 + }, + { + "page": "/projects/fa3f460f-4fb9-4ced-b548-8ba6a8ecae3f", + "views": 31, + "change": 0.47368421052631593 + }, + { + "page": "/projects/065e6c13-ad6b-46a3-8075-c3137eb03068", + "views": 31, + "change": 0.40000000000000013 + }, + { + "page": "/projects/10201832-7c73-4033-9b65-3ef13d81656a/project-matrices", + "views": 31, + "change": 0.40000000000000013 + }, + { + "page": "/projects/7be05025-9972-493a-856f-3342a8d1b183", + "views": 31, + "change": 1.8000000000000003 + }, + { + "page": "/projects/ef1e3497-515e-4bbe-8d4c-10161854b699", + "views": 31, + "change": 0.1200000000000001 + }, + { + "page": "/projects/091cf39b-01bc-42e5-9437-f419a66c8a45/project-metadata", + "views": 31, + "change": 0.16666666666666652 + }, + { + "page": "/projects/c281ab63-7b7d-4bdf-b761-9b1baaa18f82", + "views": 31, + "change": 0.03703703703703698 + }, + { + "page": "/projects/85a9263b-0887-48ed-ab1a-ddfa773727b6", + "views": 30, + "change": -0.12591050988553587 + }, + { + "page": "/projects/2d559a6e-7cd9-432f-9f6e-0e4df03b0888", + "views": 30, + "change": 0.29032258064516125 + }, + { + "page": "/projects/6e465c30-1109-4c16-9fd5-deca9f9a05eb/get-curl-command", + "views": 30, + "change": null + }, + { + "page": "/projects/e88714c2-2e78-49da-8146-5a60b50628b4", + "views": 30, + "change": 0.935483870967742 + }, + { + "page": "/hca-bio-networks/nervous-system/publications", + "views": 29, + "change": -0.22960151802656548 + }, + { + "page": "/guides/accessing-atlases", + "views": 29, + "change": 0.45519713261648764 + }, + { + "page": "/projects/4bcc16b5-7a47-45bb-b9c0-be9d5336df2d/get-curl-command", + "views": 29, + "change": 0.3786078098471988 + }, + { + "page": "/projects/5116c081-8be7-49c5-8ce0-73b887328aa9", + "views": 29, + "change": 0.8709677419354838 + }, + { + "page": "/projects/6179c38c-9987-4e7c-a4bb-d34cf33a3c3f/project-metadata", + "views": 29, + "change": 5.548387096774193 + }, + { + "page": "/projects/4d9d56e4-610d-4748-b57d-f8315e3f53a3", + "views": 29, + "change": -0.25161290322580643 + }, + { + "page": "/projects/ad98d3cd-26fb-4ee3-99c9-8a2ab085e737/project-metadata", + "views": 29, + "change": -0.3611329661683714 + }, + { + "page": "/projects/e9f36305-d857-44a3-93f0-df4e6007dc97/export-to-terra", + "views": 28, + "change": 0.14956011730205265 + }, + { + "page": "/projects/10201832-7c73-4033-9b65-3ef13d81656a/project-metadata", + "views": 28, + "change": 0.5806451612903225 + }, + { + "page": "/projects/b208466a-6fb0-4385-8cfb-8e03ff6b939e", + "views": 28, + "change": -0.20967741935483875 + }, + { + "page": "/projects/efea6426-510a-4b60-9a19-277e52bfa815", + "views": 28, + "change": 0.053763440860215006 + }, + { + "page": "/projects/2ef3655a-973d-4d69-9b41-21fa4041eed7", + "views": 27, + "change": -0.5023041474654377 + }, + { + "page": "/projects/ae71be1d-ddd8-4feb-9bed-24c3ddb6e1ad", + "views": 27, + "change": -0.06203473945409421 + }, + { + "page": "/projects/2b81ecc4-6ee0-438f-8c5b-c10b2464069e", + "views": 27, + "change": 1.709677419354839 + }, + { + "page": "/hca-bio-networks/genetic-diversity/datasets", + "views": 27, + "change": 1.709677419354839 + }, + { + "page": "/projects/cfece4d2-f18d-44ad-a46a-42bbcb5cb3b7/project-matrices", + "views": 27, + "change": 3.064516129032258 + }, + { + "page": "/projects/35d5b057-3daf-4ccd-8112-196194598893/project-metadata", + "views": 27, + "change": 0.8759305210918116 + }, + { + "page": "/projects/9fc0064b-84ce-40a5-a768-e6eb3d364ee0/project-metadata", + "views": 27, + "change": -0.512258064516129 + }, + { + "page": "/metadata/design-principles/structure", + "views": 26, + "change": null + }, + { + "page": "/projects/bcdf233f-9246-4c0c-9843-0514120b7e3a", + "views": 26, + "change": 2.3548387096774195 + }, + { + "page": "/projects/cd61771b-661a-4e19-b269-6e5d95350de6", + "views": 26, + "change": 0.9569892473118278 + }, + { + "page": "/projects/16241d82-3119-4bdd-bba5-5097c0591ba0/project-matrices", + "views": 26, + "change": 1.3483870967741938 + }, + { + "page": "/projects/0cc58d0b-1734-4e1d-9113-b32e52f75e36/get-curl-command", + "views": 26, + "change": 3.6967741935483875 + }, + { + "page": "/projects/fc381e70-df1b-407d-8131-52ab523270bd", + "views": 25, + "change": 0.32827324478178355 + }, + { + "page": "/about", + "views": 25, + "change": -0.16367980884109912 + }, + { + "page": "/projects/73769e0a-5fcd-41f4-9083-41ae08bfa4c1", + "views": 25, + "change": 0.02639296187683282 + }, + { + "page": "/projects/f0f89c14-7460-4bab-9d42-22228a91f185/project-matrices", + "views": 25, + "change": -0.018232819074333828 + }, + { + "page": "/projects/c1a9a93d-d9de-4e65-9619-a9cec1052eaa", + "views": 25, + "change": 0.5053763440860215 + }, + { + "page": "/projects/ef1d9888-fa86-47a4-bb72-0ab0f20f7004", + "views": 25, + "change": -0.13151364764267992 + }, + { + "page": "/projects/6f03e4ad-9305-4bfa-a5b6-929ffb1d94bd", + "views": 25, + "change": 0.6129032258064515 + }, + { + "page": "/projects/455b46e6-d8ea-4611-861e-de720a562ada/get-curl-command", + "views": 25, + "change": 0.32827324478178355 + }, + { + "page": "/projects/cbd2911f-252b-4428-abde-69e270aefdfc", + "views": 25, + "change": 0.07526881720430101 + }, + { + "page": "/projects/c6ef0270-eafc-43bd-8097-c10020a03cfc", + "views": 24, + "change": 0.14091680814940588 + }, + { + "page": "/projects/376a7f55-b876-4f60-9cf3-ed7bc83d5415", + "views": 24, + "change": -0.09677419354838712 + }, + { + "page": "/projects/cfece4d2-f18d-44ad-a46a-42bbcb5cb3b7/project-metadata", + "views": 24, + "change": 0.14091680814940588 + }, + { + "page": "/projects/7f9766ff-bb12-4279-b340-78d140bdd7ba", + "views": 24, + "change": -0.09677419354838712 + }, + { + "page": "/projects/a4f154f8-5cc9-40b5-b8d7-af90afce8a8f", + "views": 24, + "change": 0.14091680814940588 + }, + { + "page": "/projects/35d5b057-3daf-4ccd-8112-196194598893/get-curl-command", + "views": 24, + "change": 1.4086021505376345 + }, + { + "page": "/projects/04ad400c-58cb-40a5-bc2b-2279e13a910b", + "views": 24, + "change": 0.08387096774193559 + }, + { + "page": "/projects/5f607e50-ba22-4598-b1e9-f3d9d7a35dcc", + "views": 24, + "change": 2.6129032258064515 + }, + { + "page": "/projects/85c0d6fa-f117-4d76-b01a-5d5e8f5f9188", + "views": 24, + "change": 0.14091680814940588 + }, + { + "page": "/projects/e5ef5c5f-b856-47d1-b643-62c265528060", + "views": 24, + "change": 0.20430107526881724 + }, + { + "page": "/projects/07073c12-8006-4710-a00b-23abdb814904", + "views": 23, + "change": 0.8885630498533723 + }, + { + "page": "/guides/requesting-access-to-controlled-access-data", + "views": 23, + "change": 0.7311827956989245 + }, + { + "page": "/projects/1c4cbdd4-33e3-4ded-ab43-5958de817123", + "views": 23, + "change": 0.8885630498533723 + }, + { + "page": "/projects/51f02950-ee25-4f4b-8d07-59aa99bb3498", + "views": 23, + "change": -0.010752688172043001 + }, + { + "page": "/projects/76bc0e97-8cae-43d4-a647-477a13be47f9/get-curl-command", + "views": 23, + "change": 2.462365591397849 + }, + { + "page": "/projects/3c27d2dd-b180-4b2b-bf05-e2e418393fd1", + "views": 23, + "change": 1.0774193548387099 + }, + { + "page": "/projects/6735ff73-1a04-422e-b500-730202e46f8a", + "views": 23, + "change": 0.598014888337469 + }, + { + "page": "/projects/df8eb7ce-3707-46af-b823-e081a562e954", + "views": 23, + "change": 3.1548387096774198 + }, + { + "page": "/projects/9fc0064b-84ce-40a5-a768-e6eb3d364ee0/project-matrices", + "views": 23, + "change": -0.4385353095030514 + }, + { + "page": "/projects/6936da41-3692-46bb-bca1-cd0f507991e9/get-curl-command", + "views": 23, + "change": 0.8885630498533723 + }, + { + "page": "/projects/8f1f653d-3ea1-4d8e-b4a7-b97dc852c2b1", + "views": 23, + "change": 0.598014888337469 + }, + { + "page": "/projects/76bc0e97-8cae-43d4-a647-477a13be47f9/project-metadata", + "views": 22, + "change": 2.9741935483870967 + }, + { + "page": "/projects/1ffa2223-28a6-4133-a5a4-badd00faf4bc/get-curl-command", + "views": 22, + "change": 0.3247311827956989 + }, + { + "page": "/export/download-manifest", + "views": 22, + "change": 0.5285359801488834 + }, + { + "page": "/projects/f2078d5f-2e7d-4844-8552-f7c41a231e52/project-metadata", + "views": 22, + "change": 0.3247311827956989 + }, + { + "page": "/projects/815c5ef5-0fb1-4eb7-9882-1d160362468e", + "views": 22, + "change": 1.2078853046594982 + }, + { + "page": "/projects/e925633f-abd9-486a-81c6-1a6a66891d23/get-curl-command", + "views": 22, + "change": 2.9741935483870967 + }, + { + "page": "/projects/453d7ee2-319f-496c-9862-99d397870b63", + "views": 22, + "change": 0.6559139784946235 + }, + { + "page": "/projects/1662accf-0e0c-48c4-9314-5aba063f2220/get-curl-command", + "views": 21, + "change": -0.5008488964346349 + }, + { + "page": "/projects/457d0bfe-79e4-43f1-be5d-83bf080d809e", + "views": 21, + "change": -0.5689149560117301 + }, + { + "page": "/projects/425c2759-db66-4c93-a358-a562c069b1f1", + "views": 21, + "change": 0.18548387096774177 + }, + { + "page": "/projects/a815c84b-8999-433f-958e-422c0720e00d", + "views": 21, + "change": -0.05161290322580647 + }, + { + "page": "/projects/cdabcf0b-7602-4abf-9afb-3b410e545703", + "views": 21, + "change": 2.793548387096774 + }, + { + "page": "/projects/087efc3c-2601-4de6-bbe9-0114593050d1", + "views": 21, + "change": 0.11574952561669827 + }, + { + "page": "/projects/77780d56-03c0-481f-aade-2038490cef9f", + "views": 21, + "change": -0.17531556802244042 + }, + { + "page": "/projects/896f377c-8e88-463e-82b0-b2a5409d6fe4/project-matrices", + "views": 21, + "change": 0.11574952561669827 + }, + { + "page": "/projects/c302fe54-d22d-451f-a130-e24df3d6afca", + "views": 21, + "change": -0.32258064516129037 + }, + { + "page": "/projects/febdaddd-ad3c-4f4a-820f-ade15c48545a", + "views": 21, + "change": 0.26451612903225796 + }, + { + "page": "/projects/1c5eaabf-075b-4b7a-a9e6-07792c2034b3", + "views": 21, + "change": 8.483870967741934 + }, + { + "page": "/projects/f0f89c14-7460-4bab-9d42-22228a91f185/export-to-terra", + "views": 21, + "change": 1.3709677419354835 + }, + { + "page": "/projects/2d559a6e-7cd9-432f-9f6e-0e4df03b0888/get-curl-command", + "views": 21, + "change": 5.32258064516129 + }, + { + "page": "/projects/4627f43e-a43f-44dd-8c4b-7efddb3f296d/get-curl-command", + "views": 21, + "change": -0.1378299120234604 + }, + { + "page": "/projects/6936da41-3692-46bb-bca1-cd0f507991e9/project-matrices", + "views": 21, + "change": 0.18548387096774177 + }, + { + "page": "/projects/f2078d5f-2e7d-4844-8552-f7c41a231e52/project-matrices", + "views": 21, + "change": 1.3709677419354835 + }, + { + "page": "/projects/18e58437-76b7-4021-8ede-3f0b443fa915", + "views": 20, + "change": -0.21458625525946706 + }, + { + "page": "/projects/4bcc16b5-7a47-45bb-b9c0-be9d5336df2d/project-matrices", + "views": 20, + "change": 0.5053763440860215 + }, + { + "page": "/projects/4bcc16b5-7a47-45bb-b9c0-be9d5336df2d/project-metadata", + "views": 20, + "change": -0.09677419354838712 + }, + { + "page": "/projects/888f1766-4c84-43bb-8717-b5f9d2046097", + "views": 20, + "change": 0.06261859582542684 + }, + { + "page": "/projects/5ee710d7-e2d5-4fe2-818d-15f5e31dae32", + "views": 20, + "change": 0.5053763440860215 + }, + { + "page": "/projects/6e465c30-1109-4c16-9fd5-deca9f9a05eb/project-metadata", + "views": 20, + "change": null + }, + { + "page": "/projects/d71c76d3-3670-4774-a9cf-034249d37c60", + "views": 20, + "change": 3.516129032258064 + }, + { + "page": "/contribute/submitting-hca-data-to-cellxgene-discover", + "views": 20, + "change": 1.5806451612903225 + }, + { + "page": "/projects/9a23ac2d-93dd-4bac-9bb8-040e6426db9d", + "views": 20, + "change": 0.20430107526881724 + }, + { + "page": "/projects/ad98d3cd-26fb-4ee3-99c9-8a2ab085e737/project-matrices", + "views": 20, + "change": -0.5483870967741935 + }, + { + "page": "/projects/1ffa2223-28a6-4133-a5a4-badd00faf4bc/project-matrices", + "views": 20, + "change": 1.5806451612903225 + }, + { + "page": "/projects/5116c081-8be7-49c5-8ce0-73b887328aa9/get-curl-command", + "views": 20, + "change": 3.516129032258064 + }, + { + "page": "/projects/64809a52-f703-4aec-b3a5-eca808a971d0/get-curl-command", + "views": 20, + "change": 1.0071684587813623 + }, + { + "page": "/projects/f48e7c39-cc67-4055-9d79-bc437892840c", + "views": 19, + "change": 1.4516129032258065 + }, + { + "page": "/projects/6179c38c-9987-4e7c-a4bb-d34cf33a3c3f/get-curl-command", + "views": 19, + "change": 0.3200992555831266 + }, + { + "page": "/projects/fcaa53cd-ba57-4bfe-af9c-eaa958f95c1a", + "views": 19, + "change": -0.3870967741935484 + }, + { + "page": "/projects/923d3231-7295-4184-b3f6-c3082766a8c7/project-metadata", + "views": 19, + "change": 0.3200992555831266 + }, + { + "page": "/projects/b32a9915-c81b-4cbc-af53-3a66b5da3c9a", + "views": 19, + "change": 3.290322580645161 + }, + { + "page": "/projects/c7a342eb-777e-4479-95ce-468f5bbcd893/get-curl-command", + "views": 19, + "change": 0.43010752688172027 + }, + { + "page": "/metadata/tier-2", + "views": 19, + "change": 0.1440860215053763 + }, + { + "page": "/projects/3d49e5e5-976f-44cb-b6b9-079016c31c56", + "views": 19, + "change": -0.4082313681868742 + }, + { + "page": "/projects/379ed69e-be05-48bc-af5e-a7fc589709bf", + "views": 19, + "change": 1.1451612903225805 + }, + { + "page": "/projects/7adede6a-0ab7-45e6-9b67-ffe7466bec1f", + "views": 19, + "change": 0.9068100358422941 + }, + { + "page": "/projects/8ab8726d-81b9-4bd2-acc2-4d50bee786b4", + "views": 19, + "change": 0.7161290322580645 + }, + { + "page": "/hca-bio-networks/gut/datasets", + "views": 19, + "change": -0.2538569424964937 + }, + { + "page": "/projects/0cc58d0b-1734-4e1d-9113-b32e52f75e36/project-matrices", + "views": 19, + "change": 1.8602150537634405 + }, + { + "page": "/projects/c5f46615-68de-4cf4-bbc2-a0ae10f08243/get-curl-command", + "views": 19, + "change": 4.720430107526881 + }, + { + "page": "/projects/2d559a6e-7cd9-432f-9f6e-0e4df03b0888/project-matrices", + "views": 19, + "change": 2.432258064516129 + }, + { + "page": "/projects/c16a754f-5da3-46ed-8c1e-6426af2ef625/get-curl-command", + "views": 19, + "change": 0.22580645161290325 + }, + { + "page": "/projects/f598aee0-d269-4036-90e9-d6d5b1c84429", + "views": 18, + "change": -0.26099706744868034 + }, + { + "page": "/projects/4d6f6c96-2a83-43d8-8fe1-0f53bffd4674/get-curl-command", + "views": 18, + "change": 1.3225806451612905 + }, + { + "page": "/projects/5bd01deb-01ee-4611-8efd-cf0ec5f56ac4", + "views": 18, + "change": -0.09677419354838701 + }, + { + "page": "/projects/54aaa409-dc28-48c5-be26-d368b4a5d5c6", + "views": 18, + "change": 0.16129032258064524 + }, + { + "page": "/projects/77dedd59-1376-4887-9bca-dc42b56d5b7a", + "views": 18, + "change": 0.08387096774193536 + }, + { + "page": "/projects/923d3231-7295-4184-b3f6-c3082766a8c7/get-curl-command", + "views": 18, + "change": 0.250620347394541 + }, + { + "page": "/projects/a9301beb-e9fa-42fe-b75c-84e8a460c733/project-metadata", + "views": 18, + "change": 0.250620347394541 + }, + { + "page": "/projects/0792db34-8047-4e62-802c-9177c9cd8e28", + "views": 18, + "change": 1.032258064516129 + }, + { + "page": "/projects/24d0dbbc-54eb-4904-8141-934d26f1c936", + "views": 18, + "change": -0.22580645161290325 + }, + { + "page": "/projects/6179c38c-9987-4e7c-a4bb-d34cf33a3c3f/project-matrices", + "views": 18, + "change": 3.064516129032258 + }, + { + "page": "/projects/8185730f-4113-40d3-9cc3-929271784c2b", + "views": 18, + "change": 0.08387096774193536 + }, + { + "page": "/projects/414acced-eba0-440f-b721-befbc5642bef", + "views": 18, + "change": 0.16129032258064524 + }, + { + "page": "/projects/4d6f6c96-2a83-43d8-8fe1-0f53bffd4674/project-matrices", + "views": 18, + "change": 1.032258064516129 + }, + { + "page": "/projects/c0fecf0b-af86-41b8-ba82-d5fd81b7542a", + "views": 18, + "change": 0.250620347394541 + }, + { + "page": "/projects/12f32054-8f18-4dae-8959-bfce7e3108e7", + "views": 18, + "change": -0.09677419354838701 + }, + { + "page": "/projects/1cd1f41f-f81a-486b-a05b-66ec60f81dcf", + "views": 18, + "change": 0.6258064516129032 + }, + { + "page": "/projects/85a9263b-0887-48ed-ab1a-ddfa773727b6/get-curl-command", + "views": 18, + "change": 1.3225806451612905 + }, + { + "page": "/projects/957261f7-2bd6-4358-a6ed-24ee080d5cfc/project-matrices", + "views": 18, + "change": 0.6258064516129032 + }, + { + "page": "/projects/0777b9ef-91f3-468b-9dea-db477437aa1a", + "views": 17, + "change": -0.4094292803970223 + }, + { + "page": "/projects/1662accf-0e0c-48c4-9314-5aba063f2220/project-metadata", + "views": 17, + "change": -0.47052280311457173 + }, + { + "page": "/projects/75dbbce9-0cde-489c-88a7-93e8f92914a3", + "views": 17, + "change": 0.5354838709677421 + }, + { + "page": "/projects/9f17ed7d-9325-4723-a120-b00e48db20c0", + "views": 17, + "change": 0.09677419354838701 + }, + { + "page": "/projects/daef3fda-2620-45ae-a3f7-1613814a35bf", + "views": 17, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2245bca0-6563-4e88-ab26-f2b8f60383a7/get-curl-command", + "views": 17, + "change": 1.193548387096774 + }, + { + "page": "/projects/e090445c-6971-4212-bc5f-ae4ec3914102", + "views": 17, + "change": 0.7060931899641578 + }, + { + "page": "/projects/ee166275-f63a-4864-8155-4df86c9de679", + "views": 17, + "change": 0.39589442815249254 + }, + { + "page": "/projects/6621c827-b57a-4268-bc80-df4049140193", + "views": 17, + "change": 0.39589442815249254 + }, + { + "page": "/projects/cbd3d276-9f24-4af9-8381-b11f6cdbdc4b", + "views": 17, + "change": 0.7060931899641578 + }, + { + "page": "/projects/04e4292c-f62f-4098-ae9b-fd69ae002a90/get-curl-command", + "views": 17, + "change": 6.677419354838709 + }, + { + "page": "/projects/35d5b057-3daf-4ccd-8112-196194598893/project-matrices", + "views": 17, + "change": 1.193548387096774 + }, + { + "page": "/projects/5f607e50-ba22-4598-b1e9-f3d9d7a35dcc/get-curl-command", + "views": 17, + "change": null + }, + { + "page": "/projects/74b6d569-3b11-42ef-b6b1-a0454522b4a0", + "views": 17, + "change": -0.1469534050179211 + }, + { + "page": "/projects/e579d0f4-18ef-4d42-90fa-4d2afb60a862", + "views": 17, + "change": -0.26881720430107525 + }, + { + "page": "/projects/957261f7-2bd6-4358-a6ed-24ee080d5cfc/get-curl-command", + "views": 17, + "change": 0.39589442815249254 + }, + { + "page": "/projects/b176d756-62d8-4933-83a4-8b026380262f", + "views": 17, + "change": 0.09677419354838701 + }, + { + "page": "/projects/135f7f5c-4a85-4bcf-9f7c-4f035ff1e428", + "views": 16, + "change": -0.03655913978494629 + }, + { + "page": "/projects/c1810dbc-16d2-45c3-b45e-3e675f88d87b/project-metadata", + "views": 16, + "change": 1.4086021505376345 + }, + { + "page": "/projects/6e177195-0ac0-468b-99a2-87de96dc9db4", + "views": 16, + "change": -0.09677419354838712 + }, + { + "page": "/projects/a39728aa-70a0-4201-b0a2-81b7badf3e71/project-matrices", + "views": 16, + "change": 1.064516129032258 + }, + { + "page": "/projects/1dddae6e-3753-48af-b20e-fa22abad125d", + "views": 16, + "change": -0.09677419354838712 + }, + { + "page": "/projects/38e44dd0-c3df-418e-9256-d0824748901f", + "views": 16, + "change": 0.4451612903225808 + }, + { + "page": "/projects/79351583-b212-44ba-b473-731bdcddb407", + "views": 16, + "change": 0.20430107526881724 + }, + { + "page": "/projects/9fc0064b-84ce-40a5-a768-e6eb3d364ee0/export-to-terra", + "views": 16, + "change": -0.23938879456706275 + }, + { + "page": "/projects/b10cd314-3e71-4437-9a16-77028d243e81/get-curl-command", + "views": 16, + "change": 0.6057347670250897 + }, + { + "page": "/projects/c0518445-3b3b-49c6-b8fc-c41daa4eacba/get-curl-command", + "views": 16, + "change": 0.8064516129032258 + }, + { + "page": "/projects/6e465c30-1109-4c16-9fd5-deca9f9a05eb/project-matrices", + "views": 16, + "change": null + }, + { + "page": "/projects/f86f1ab4-1fbb-4510-ae35-3ffd752d4dfc", + "views": 16, + "change": -0.03655913978494629 + }, + { + "page": "/projects/6936da41-3692-46bb-bca1-cd0f507991e9/project-metadata", + "views": 16, + "change": 0.20430107526881724 + }, + { + "page": "/projects/8f1f653d-3ea1-4d8e-b4a7-b97dc852c2b1/get-curl-command", + "views": 16, + "change": 0.8064516129032258 + }, + { + "page": "/projects/ef1e3497-515e-4bbe-8d4c-10161854b699/project-matrices", + "views": 16, + "change": 1.4086021505376345 + }, + { + "page": "/projects/f8aa201c-4ff1-45a4-890e-840d63459ca2", + "views": 16, + "change": 1.8903225806451616 + }, + { + "page": "/projects/1688d7cc-6f5c-49ef-b353-e308b61d4e4c", + "views": 16, + "change": 0.11166253101736978 + }, + { + "page": "/projects/21ea8ddb-525f-4f1f-a820-31f0360399a2", + "views": 16, + "change": 3.817204301075269 + }, + { + "page": "/projects/94023a08-611d-4f22-a8c9-90956e091b2e/get-curl-command", + "views": 16, + "change": 1.4086021505376345 + }, + { + "page": "/projects/7f980afc-4e01-4b9c-a9a1-f50e17fce8c2", + "views": 15, + "change": 3.516129032258064 + }, + { + "page": "/projects/aefb9192-43fc-46d7-a4c1-29597f7ef61b", + "views": 15, + "change": 0.042183622828784184 + }, + { + "page": "/projects/2af52a13-65cb-4973-b513-39be38f2df3f", + "views": 15, + "change": -0.09677419354838712 + }, + { + "page": "/projects/38e34131-62fc-4323-b435-15113dfd6dcc", + "views": 15, + "change": -0.09677419354838712 + }, + { + "page": "/projects/16241d82-3119-4bdd-bba5-5097c0591ba0/project-metadata", + "views": 15, + "change": 0.935483870967742 + }, + { + "page": "/projects/1ffa2223-28a6-4133-a5a4-badd00faf4bc/project-metadata", + "views": 15, + "change": 0.693548387096774 + }, + { + "page": "/projects/4af795f7-3e1d-4341-b867-4ac0982b9efd", + "views": 15, + "change": -0.32258064516129026 + }, + { + "page": "/projects/923d3231-7295-4184-b3f6-c3082766a8c7/project-matrices", + "views": 15, + "change": 0.23167155425219943 + }, + { + "page": "/projects/a9301beb-e9fa-42fe-b75c-84e8a460c733/get-curl-command", + "views": 15, + "change": 0.12903225806451601 + }, + { + "page": "/projects/b486e0d9-dd8e-462a-b662-9a5bbad5edae", + "views": 15, + "change": -0.5161290322580645 + }, + { + "page": "/projects/b51f49b4-0d2e-4cbd-bbd5-04cd171fc2fa", + "views": 15, + "change": -0.20303605313092987 + }, + { + "page": "/projects/bc5512cc-9544-4aa4-8b75-8af445ee2257", + "views": 15, + "change": 0.5053763440860217 + }, + { + "page": "/projects/e993adcd-d4ba-4f88-9a05-d1c05bdf0c45", + "views": 15, + "change": -0.153225806451613 + }, + { + "page": "/projects/032880e5-2b44-4bfb-8eef-25bb48e7453f", + "views": 15, + "change": -0.153225806451613 + }, + { + "page": "/projects/7c599029-7a3c-4b5c-8e79-e72c9a9a65fe", + "views": 15, + "change": 0.23167155425219943 + }, + { + "page": "/projects/9b876d31-0739-4e96-9846-f76e6a427279", + "views": 15, + "change": -0.09677419354838712 + }, + { + "page": "/projects/64809a52-f703-4aec-b3a5-eca808a971d0/project-metadata", + "views": 15, + "change": 1.709677419354839 + }, + { + "page": "/projects/23509202-1e3c-4959-8a45-9c5b642a1066", + "views": 15, + "change": 0.5053763440860217 + }, + { + "page": "/projects/326b36bd-0975-475f-983b-56ddb8f73a4d", + "views": 15, + "change": -0.24731182795698914 + }, + { + "page": "/projects/7b947aa2-43a7-4082-afff-222a3e3a4635", + "views": 15, + "change": 0.12903225806451601 + }, + { + "page": "/projects/73011a86-4755-48ac-9f70-a28903b4ad77", + "views": 15, + "change": 12.548387096774192 + }, + { + "page": "/projects/a9f5323a-ce71-471c-9caf-04cc118fd1d7", + "views": 15, + "change": -0.24731182795698914 + }, + { + "page": "/projects/e925633f-abd9-486a-81c6-1a6a66891d23/export-to-terra", + "views": 15, + "change": 5.774193548387096 + }, + { + "page": "/projects/87f519b4-8862-41f9-acff-75e823e0e430", + "views": 15, + "change": 0.935483870967742 + }, + { + "page": "/projects/5eafb94b-02d8-423e-81b8-3673da319ca0", + "views": 14, + "change": -0.2561669829222012 + }, + { + "page": "/projects/c715cd2f-dc7c-44a6-9cd5-b6a6d9f075ae", + "views": 14, + "change": -0.20967741935483875 + }, + { + "page": "/projects/cfece4d2-f18d-44ad-a46a-42bbcb5cb3b7/export-to-terra", + "views": 14, + "change": 5.32258064516129 + }, + { + "page": "/projects/896f377c-8e88-463e-82b0-b2a5409d6fe4/project-metadata", + "views": 14, + "change": -0.027295285359801413 + }, + { + "page": "/projects/c1810dbc-16d2-45c3-b45e-3e675f88d87b/export-to-terra", + "views": 14, + "change": 2.161290322580645 + }, + { + "page": "/projects/16e99159-78bc-44aa-b479-55a5e903bf50", + "views": 14, + "change": 0.2645161290322582 + }, + { + "page": "/projects/6e465c30-1109-4c16-9fd5-deca9f9a05eb/export-to-terra", + "views": 14, + "change": null + }, + { + "page": "/projects/cea413af-79b3-4f11-8b48-383fe9a65fbe", + "views": 14, + "change": 0.8064516129032258 + }, + { + "page": "/projects/b3938158-4e8d-4fdb-9e13-9e94270dde16/get-curl-command", + "views": 14, + "change": 0.5806451612903225 + }, + { + "page": "/projects/2d559a6e-7cd9-432f-9f6e-0e4df03b0888/project-metadata", + "views": 14, + "change": 1.5290322580645164 + }, + { + "page": "/projects/50db6ba4-3986-4d55-86b7-e1a5a888a17b/project-metadata", + "views": 14, + "change": 0.14956011730205265 + }, + { + "page": "/projects/9c20a245-f2c0-43ae-82c9-2232ec6b594f/project-metadata", + "views": 14, + "change": 0.2645161290322582 + }, + { + "page": "/projects/febdaddd-ad3c-4f4a-820f-ade15c48545a/get-curl-command", + "views": 14, + "change": 2.161290322580645 + }, + { + "page": "/projects/04e4292c-f62f-4098-ae9b-fd69ae002a90/project-matrices", + "views": 14, + "change": 3.21505376344086 + }, + { + "page": "/projects/279f1766-3319-4e3c-9f99-6fb59ba9b3e5", + "views": 14, + "change": 5.32258064516129 + }, + { + "page": "/projects/a004b150-1c36-4af6-9bbd-070c06dbc17d/get-curl-command", + "views": 13, + "change": 1.3483870967741938 + }, + { + "page": "/projects/a9c022b4-c771-4468-b769-cabcf9738de3", + "views": 13, + "change": 0.17419354838709689 + }, + { + "page": "/projects/dcc28fb3-7bab-48ce-bc4b-684c00e133ce", + "views": 13, + "change": -0.09677419354838701 + }, + { + "page": "/projects/29ed827b-c539-4f4c-bb6b-ce8f9173dfb7", + "views": 13, + "change": 0.3046594982078854 + }, + { + "page": "/projects/4d6f6c96-2a83-43d8-8fe1-0f53bffd4674/project-metadata", + "views": 13, + "change": 0.4677419354838708 + }, + { + "page": "/projects/a004b150-1c36-4af6-9bbd-070c06dbc17d/project-metadata", + "views": 13, + "change": 4.870967741935483 + }, + { + "page": "/projects/027c51c6-0719-469f-a7f5-640fe57cbece", + "views": 13, + "change": 0.0674486803519061 + }, + { + "page": "/projects/455b46e6-d8ea-4611-861e-de720a562ada/project-metadata", + "views": 13, + "change": 0.4677419354838708 + }, + { + "page": "/projects/2fe3c60b-ac1a-4c61-9b59-f6556c0fce63/get-curl-command", + "views": 13, + "change": 1.3483870967741938 + }, + { + "page": "/projects/566d00b0-e1f8-4b92-9cbd-57de9fad0050", + "views": 13, + "change": 0.3046594982078854 + }, + { + "page": "/projects/c1810dbc-16d2-45c3-b45e-3e675f88d87b/project-matrices", + "views": 13, + "change": 0.3046594982078854 + }, + { + "page": "/projects/2245bca0-6563-4e88-ab26-f2b8f60383a7/project-metadata", + "views": 13, + "change": 0.17419354838709689 + }, + { + "page": "/projects/77423e58-0fbb-495a-9ec2-bd9a8010f21d", + "views": 13, + "change": -0.09677419354838701 + }, + { + "page": "/projects/a9301beb-e9fa-42fe-b75c-84e8a460c733/project-matrices", + "views": 13, + "change": 0.4677419354838708 + }, + { + "page": "/projects/ef1e3497-515e-4bbe-8d4c-10161854b699/get-curl-command", + "views": 13, + "change": 10.741935483870966 + }, + { + "page": "/projects/1eba4d0b-2d15-4ba7-bb3c-d4654dd94519", + "views": 13, + "change": 0.17419354838709689 + }, + { + "page": "/projects/50db6ba4-3986-4d55-86b7-e1a5a888a17b/get-curl-command", + "views": 13, + "change": 0.17419354838709689 + }, + { + "page": "/projects/77c13c40-a598-4036-807f-be09209ec2dd", + "views": 13, + "change": 10.741935483870966 + }, + { + "page": "/projects/ad3c5c48-ad28-43fd-9ec0-9b7a87e0ee6d", + "views": 13, + "change": 0.4677419354838708 + }, + { + "page": "/projects/aebc99a3-3151-482a-9709-da6802617763", + "views": 13, + "change": 1.9354838709677415 + }, + { + "page": "/projects/f2fe82f0-4454-4d84-b416-a885f3121e59", + "views": 13, + "change": 0.17419354838709689 + }, + { + "page": "/projects/4a95101c-9ffc-4f30-a809-f04518a23803/get-curl-command", + "views": 13, + "change": 2.9139784946236555 + }, + { + "page": "/projects/4c73d1e4-bad2-4a22-a0ba-55abbdbdcc3d", + "views": 13, + "change": 0.17419354838709689 + }, + { + "page": "/projects/65cbfea5-5c54-4255-a1d0-14549a86a5c1", + "views": 13, + "change": 0.17419354838709689 + }, + { + "page": "/projects/85a9263b-0887-48ed-ab1a-ddfa773727b6/project-metadata", + "views": 13, + "change": 0.6774193548387097 + }, + { + "page": "/projects/ae9f439b-bd47-4d6e-bd72-32dc70b35d97", + "views": 13, + "change": 0.0674486803519061 + }, + { + "page": "/projects/c41dffbf-ad83-447c-a0e1-13e689d9b258/get-curl-command", + "views": 13, + "change": 2.9139784946236555 + }, + { + "page": "/projects/379ed69e-be05-48bc-af5e-a7fc589709bf/project-metadata", + "views": 13, + "change": 1.9354838709677415 + }, + { + "page": "/projects/57916660-af5a-44d5-a7a9-2e84b65f8a68", + "views": 13, + "change": 1.3483870967741938 + }, + { + "page": "/hca-bio- networks/eye/atlases/retina-v1-0", + "views": 13, + "change": null + }, + { + "page": "/projects/f7b46477-0f2a-4bff-a9b7-719e000499a3/get-curl-command", + "views": 13, + "change": null + }, + { + "page": "/about/hca", + "views": 12, + "change": 0.08387096774193559 + }, + { + "page": "/contribute/submitting-cell-annotation-metadata-to-cap", + "views": 12, + "change": 1.7096774193548385 + }, + { + "page": "/projects/53c53cd4-8127-4e12-bc7f-8fe1610a715c", + "views": 12, + "change": -0.42954159592529706 + }, + { + "page": "/projects/c893cb57-5c9f-4f26-9312-21b85be84313", + "views": 12, + "change": -0.16625310173697272 + }, + { + "page": "/projects/c8e6c5d9-fcde-4845-bead-ff96999e3051", + "views": 12, + "change": 0.20430107526881724 + }, + { + "page": "/projects/10201832-7c73-4033-9b65-3ef13d81656a/export-to-terra", + "views": 12, + "change": 1.1677419354838712 + }, + { + "page": "/projects/40bb5783-c924-4d19-b6cb-d26a8d3ae1d8", + "views": 12, + "change": -0.32258064516129037 + }, + { + "page": "/projects/76bc0e97-8cae-43d4-a647-477a13be47f9/project-matrices", + "views": 12, + "change": 1.7096774193548385 + }, + { + "page": "/projects/9d97f01f-9313-416e-9b07-560f048b2350", + "views": 12, + "change": 0.35483870967741926 + }, + { + "page": "/projects/455b46e6-d8ea-4611-861e-de720a562ada/project-matrices", + "views": 12, + "change": 1.1677419354838712 + }, + { + "page": "/projects/7c75f07c-608d-4c4a-a1b7-b13d11c0ad31", + "views": 12, + "change": 2.6129032258064515 + }, + { + "page": "/projects/8b9cb6ae-6a43-4e47-b9fb-3df7aeec941f", + "views": 12, + "change": -0.09677419354838712 + }, + { + "page": "/projects/8fd1609b-cd2d-4b4d-bb96-49ae6b8ade2f", + "views": 12, + "change": 2.6129032258064515 + }, + { + "page": "/projects/c412be53-cf95-47c7-980c-c0a0caa2d3a0", + "views": 12, + "change": 0.20430107526881724 + }, + { + "page": "/projects/f3825dfe-990a-431f-b971-9c26d39840db", + "views": 12, + "change": 0.20430107526881724 + }, + { + "page": "/projects/0d4aaaac-02c3-44c4-8ae0-4465f97f83ed", + "views": 12, + "change": 0.20430107526881724 + }, + { + "page": "/projects/8a40ff19-e614-4c50-b23b-5c9e1d546bab", + "views": 12, + "change": 9.838709677419354 + }, + { + "page": "/export/export-to-terra", + "views": 12, + "change": 1.1677419354838712 + }, + { + "page": "/projects/65d7a168-4d62-4bc0-8324-4e742aa62de6", + "views": 12, + "change": 1.1677419354838712 + }, + { + "page": "/projects/c9e83418-a9f0-4ed1-ab4f-56d9513417bf", + "views": 12, + "change": 0.35483870967741926 + }, + { + "page": "/projects/ef1d9888-fa86-47a4-bb72-0ab0f20f7004/get-curl-command", + "views": 12, + "change": 0.35483870967741926 + }, + { + "page": "/analyze/visualization/anatomogram", + "views": 12, + "change": 0.08387096774193559 + }, + { + "page": "/projects/03c6fce7-789e-4e78-a27a-664d562bb738", + "views": 12, + "change": 1.7096774193548385 + }, + { + "page": "/projects/5f607e50-ba22-4598-b1e9-f3d9d7a35dcc/project-matrices", + "views": 12, + "change": null + }, + { + "page": "/projects/c211fd49-d980-4ba1-8c6a-c24254a3cb52", + "views": 12, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c281ab63-7b7d-4bdf-b761-9b1baaa18f82/project-metadata", + "views": 12, + "change": -0.16625310173697272 + }, + { + "page": "/projects/54aaa409-dc28-48c5-be26-d368b4a5d5c6/get-curl-command", + "views": 12, + "change": null + }, + { + "page": "/projects/1ffa2223-28a6-4133-a5a4-badd00faf4bc/export-to-terra", + "views": 11, + "change": 1.4838709677419355 + }, + { + "page": "/projects/602628d7-c038-48a8-aa97-ffbb2cb44c9d", + "views": 11, + "change": -0.006451612903225823 + }, + { + "page": "/projects/7b393e4d-65bc-4c03-b402-aae769299329", + "views": 11, + "change": -0.41555977229601526 + }, + { + "page": "/projects/c7a342eb-777e-4479-95ce-468f5bbcd893/project-metadata", + "views": 11, + "change": 0.10394265232974909 + }, + { + "page": "/projects/cddab57b-6868-4be4-806f-395ed9dd635a", + "views": 11, + "change": -0.006451612903225823 + }, + { + "page": "/projects/e255b1c6-1143-4fa6-83a8-528f15b41038/get-curl-command", + "views": 11, + "change": 0.10394265232974909 + }, + { + "page": "/projects/1662accf-0e0c-48c4-9314-5aba063f2220/project-matrices", + "views": 11, + "change": -0.7161290322580645 + }, + { + "page": "/projects/9c20a245-f2c0-43ae-82c9-2232ec6b594f/get-curl-command", + "views": 11, + "change": -0.23573200992555832 + }, + { + "page": "/projects/e255b1c6-1143-4fa6-83a8-528f15b41038/project-metadata", + "views": 11, + "change": -0.3790322580645161 + }, + { + "page": "/projects/17cf943b-e247-454f-908b-da58665fcc56", + "views": 11, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2245bca0-6563-4e88-ab26-f2b8f60383a7/project-matrices", + "views": 11, + "change": 0.6559139784946235 + }, + { + "page": "/projects/2caedc30-c816-4b99-a237-b9f3b458c8e5", + "views": 11, + "change": -0.006451612903225823 + }, + { + "page": "/projects/4bec484d-ca7a-47b4-8d48-8830e06ad6db", + "views": 11, + "change": 0.6559139784946235 + }, + { + "page": "/projects/50154d1e-2308-44bf-9608-10c7afaa560b", + "views": 11, + "change": 2.311827956989247 + }, + { + "page": "/projects/6601b3d4-ed5a-4e1f-b54a-e36adf45aa28", + "views": 11, + "change": -0.5268817204301075 + }, + { + "page": "/projects/c281ab63-7b7d-4bdf-b761-9b1baaa18f82/get-curl-command", + "views": 11, + "change": 0.10394265232974909 + }, + { + "page": "/projects/dbd836cf-bfc2-41f0-9834-41cc6c0b235a", + "views": 11, + "change": 0.6559139784946235 + }, + { + "page": "/projects/3373e59c-525f-4a83-8c9c-d8b280454697", + "views": 11, + "change": 0.6559139784946235 + }, + { + "page": "/projects/57a2c2de-b0d4-465a-be53-a41e59e75fab", + "views": 11, + "change": 0.4193548387096775 + }, + { + "page": "/projects/957261f7-2bd6-4358-a6ed-24ee080d5cfc/project-metadata", + "views": 11, + "change": -0.23573200992555832 + }, + { + "page": "/projects/ef1e3497-515e-4bbe-8d4c-10161854b699/project-metadata", + "views": 11, + "change": 3.967741935483871 + }, + { + "page": "/projects/005d611a-14d5-4fbf-846e-571a1f874f70", + "views": 11, + "change": 2.311827956989247 + }, + { + "page": "/projects/04e4292c-f62f-4098-ae9b-fd69ae002a90/project-metadata", + "views": 11, + "change": 0.4193548387096775 + }, + { + "page": "/projects/2fe3c60b-ac1a-4c61-9b59-f6556c0fce63/project-metadata", + "views": 11, + "change": 1.4838709677419355 + }, + { + "page": "/projects/ad98d3cd-26fb-4ee3-99c9-8a2ab085e737/export-to-terra", + "views": 11, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c5f46615-68de-4cf4-bbc2-a0ae10f08243/project-matrices", + "views": 11, + "change": 2.311827956989247 + }, + { + "page": "/projects/c5f46615-68de-4cf4-bbc2-a0ae10f08243/project-metadata", + "views": 11, + "change": 2.311827956989247 + }, + { + "page": "/projects/e255b1c6-1143-4fa6-83a8-528f15b41038/project-matrices", + "views": 11, + "change": -0.23573200992555832 + }, + { + "page": "/projects/cbd2911f-252b-4428-abde-69e270aefdfc/get-curl-command", + "views": 11, + "change": 0.6559139784946235 + }, + { + "page": "/projects/79b13a2a-9ca1-42a4-97bd-70208a11bea6", + "views": 11, + "change": 3.967741935483871 + }, + { + "page": "/projects/85a9263b-0887-48ed-ab1a-ddfa773727b6/project-matrices", + "views": 11, + "change": -0.17204301075268824 + }, + { + "page": "/projects/85c0d6fa-f117-4d76-b01a-5d5e8f5f9188/get-curl-command", + "views": 11, + "change": 3.967741935483871 + }, + { + "page": "/projects/e870ab56-3537-4b6d-a66f-534fbf8cc57f", + "views": 11, + "change": -0.41555977229601526 + }, + { + "page": "/projects/8ab8726d-81b9-4bd2-acc2-4d50bee786b4/project-matrices", + "views": 11, + "change": 8.935483870967742 + }, + { + "page": "/projects/1defdada-a365-44ad-9b29-443b06bd11d6", + "views": 10, + "change": -0.4982078853046594 + }, + { + "page": "/projects/40604447-14e4-4e55-ad22-1fd2d7eb4c68", + "views": 10, + "change": -0.5698924731182795 + }, + { + "page": "/projects/61515820-5bb8-45d0-8d12-f0850222ecf0", + "views": 10, + "change": -0.3548387096774194 + }, + { + "page": "/projects/6e60a555-fd95-4aa2-8e29-3ec2ef01a580", + "views": 10, + "change": 3.516129032258064 + }, + { + "page": "/projects/87d52a86-bdc7-440c-b84d-170f7dc346d9", + "views": 10, + "change": 0.5053763440860215 + }, + { + "page": "/projects/894ae6ac-5b48-41a8-a72f-315a9b60a62e", + "views": 10, + "change": -0.652605459057072 + }, + { + "page": "/projects/2079bb2e-676e-4bbf-8c68-f9c6459edcbb", + "views": 10, + "change": 0.0035842293906811484 + }, + { + "page": "/projects/3ce9ae94-c469-419a-9637-5d138a4e642f", + "views": 10, + "change": 0.12903225806451601 + }, + { + "page": "/projects/750b455a-e3cf-4721-9581-8609a6c9d561", + "views": 10, + "change": 0.8064516129032258 + }, + { + "page": "/projects/8dadf21e-0a44-4fa3-aafc-7633b2a9eaa4", + "views": 10, + "change": -0.3548387096774194 + }, + { + "page": "/projects/902dc043-7091-445c-9442-d72e163b9879", + "views": 10, + "change": 8.032258064516128 + }, + { + "page": "/projects/a991ef15-4d4a-4b80-a93e-c538b4b54127", + "views": 10, + "change": 0.12903225806451601 + }, + { + "page": "/projects/aecfd908-674c-4d4e-b36e-0c1ceab02245", + "views": 10, + "change": -0.6885428253615128 + }, + { + "page": "/projects/e4b18cd2-8f15-490d-b9f1-d118aa067dc3", + "views": 10, + "change": -0.24731182795698925 + }, + { + "page": "/projects/f77290ae-0d7b-4239-b0fe-3cf2c9e8858d", + "views": 10, + "change": 2.010752688172043 + }, + { + "page": "/projects/4037007b-0eff-4e6d-b7bd-8dd8eec80143", + "views": 10, + "change": -0.4686907020872866 + }, + { + "page": "/projects/4bcc16b5-7a47-45bb-b9c0-be9d5336df2d/export-to-terra", + "views": 10, + "change": 3.516129032258064 + }, + { + "page": "/projects/83f5188e-3bf7-4956-9544-cea4f8997756", + "views": 10, + "change": 0.8064516129032258 + }, + { + "page": "/projects/8c3c290d-dfff-4553-8868-54ce45f4ba7f", + "views": 10, + "change": 0.0035842293906811484 + }, + { + "page": "/projects/9c20a245-f2c0-43ae-82c9-2232ec6b594f/project-matrices", + "views": 10, + "change": 0.0035842293906811484 + }, + { + "page": "/projects/a39728aa-70a0-4201-b0a2-81b7badf3e71/get-curl-command", + "views": 10, + "change": -0.3052109181141439 + }, + { + "page": "/projects/abe1a013-af7a-45ed-8c26-f3793c24a1f4/get-curl-command", + "views": 10, + "change": -0.6654719235364397 + }, + { + "page": "/projects/fccd3f50-cde2-47bf-8972-a293b5928aea", + "views": 10, + "change": -0.1788856304985338 + }, + { + "page": "/projects/2184e63d-82d8-4ab2-839e-e93f8395f568", + "views": 10, + "change": -0.09677419354838712 + }, + { + "page": "/projects/421bc6cd-bbb4-4398-ac60-a32ea94f02ae", + "views": 10, + "change": 0.5053763440860215 + }, + { + "page": "/projects/8a666b76-daaf-4b1f-9414-e4807a1d1e8b/project-metadata", + "views": 10, + "change": 0.5053763440860215 + }, + { + "page": "/projects/9f7aa401-70e3-4695-951a-30541a1434eb", + "views": 10, + "change": -0.1788856304985338 + }, + { + "page": "/projects/d012d476-8f8c-4ff3-89d6-ebbe22c1b5c1", + "views": 10, + "change": 0.12903225806451601 + }, + { + "page": "/projects/e0009214-c0a0-4a7b-96e2-d6a83e966ce0/project-metadata", + "views": 10, + "change": 1.258064516129032 + }, + { + "page": "/projects/fde199d2-a841-4ed1-aa65-b9e0af8969b1/project-metadata", + "views": 10, + "change": 0.29032258064516125 + }, + { + "page": "/projects/0cc58d0b-1734-4e1d-9113-b32e52f75e36/project-metadata", + "views": 10, + "change": 1.258064516129032 + }, + { + "page": "/projects/30dc3964-1135-4b56-b393-ce2dcbc6e379", + "views": 10, + "change": 0.5053763440860215 + }, + { + "page": "/projects/4627f43e-a43f-44dd-8c4b-7efddb3f296d/project-metadata", + "views": 10, + "change": -0.3978494623655914 + }, + { + "page": "/projects/64809a52-f703-4aec-b3a5-eca808a971d0/project-matrices", + "views": 10, + "change": 2.010752688172043 + }, + { + "page": "/projects/c16a754f-5da3-46ed-8c1e-6426af2ef625/project-metadata", + "views": 10, + "change": -0.435483870967742 + }, + { + "page": "/projects/c844538b-8854-4a95-bd01-aacbaf86d97f", + "views": 10, + "change": -0.09677419354838712 + }, + { + "page": "/projects/f7b46477-0f2a-4bff-a9b7-719e000499a3", + "views": 10, + "change": 1.258064516129032 + }, + { + "page": "/projects/faeedcb0-e046-4be7-b1ad-80a3eeabb066", + "views": 10, + "change": -0.1788856304985338 + }, + { + "page": "/projects/379ed69e-be05-48bc-af5e-a7fc589709bf/get-curl-command", + "views": 10, + "change": 8.032258064516128 + }, + { + "page": "/projects/559bb888-7829-41f2-ace5-2c05c7eb81e9", + "views": 10, + "change": 0.5053763440860215 + }, + { + "page": "/projects/5ee710d7-e2d5-4fe2-818d-15f5e31dae32/project-matrices", + "views": 10, + "change": null + }, + { + "page": "/projects/c281ab63-7b7d-4bdf-b761-9b1baaa18f82/project-matrices", + "views": 10, + "change": 0.0035842293906811484 + }, + { + "page": "/projects/daef3fda-2620-45ae-a3f7-1613814a35bf/get-curl-command", + "views": 10, + "change": 0.29032258064516125 + }, + { + "page": "/projects/e1fda217-7ee1-4c1a-adfa-648279dafac6", + "views": 10, + "change": 3.516129032258064 + }, + { + "page": "/projects/50154d1e-2308-44bf-9608-10c7afaa560b/get-curl-command", + "views": 10, + "change": 0.5053763440860215 + }, + { + "page": "/projects/20f37aaf-caa1-40e6-9123-be6ce8feb2d6", + "views": 10, + "change": 2.010752688172043 + }, + { + "page": "/projects/d5c91e92-2e7f-473d-8cf3-ab03bbae21c2/get-curl-command", + "views": 10, + "change": -0.3052109181141439 + }, + { + "page": "/projects/efea6426-510a-4b60-9a19-277e52bfa815/get-curl-command", + "views": 10, + "change": -0.24731182795698925 + }, + { + "page": "/guides/consumer-vignettes/export-to-terra", + "views": 9, + "change": 0.016129032258064502 + }, + { + "page": "/projects/50151324-f3ed-4358-98af-ec352a940a61", + "views": 9, + "change": 3.064516129032258 + }, + { + "page": "/projects/da74b507-60ee-4dd1-bd02-807bb051a337", + "views": 9, + "change": 0.16129032258064524 + }, + { + "page": "/hca-bio-networks/liver/datasets", + "views": 9, + "change": -0.6129032258064516 + }, + { + "page": "/hca-bio-networks/nervous-system/atlases/cortex-v1-0/datasets", + "views": 9, + "change": 0.35483870967741926 + }, + { + "page": "/projects/10a845f7-0361-46fa-92a3-2a36483136b1", + "views": 9, + "change": 0.016129032258064502 + }, + { + "page": "/projects/4f4f0193-ede8-4a82-8cb0-7a0a22f06e63", + "views": 9, + "change": 0.35483870967741926 + }, + { + "page": "/projects/88ec040b-8705-4f77-8f41-f81e57632f7d", + "views": 9, + "change": 0.6258064516129032 + }, + { + "page": "/projects/8c4e43fb-f7f3-4446-8367-a3fe9e0b8fd7", + "views": 9, + "change": -0.7096774193548387 + }, + { + "page": "/projects/c6ad8f9b-d26a-4811-b2ba-93d487978446", + "views": 9, + "change": 1.7096774193548385 + }, + { + "page": "/projects/1dd552a5-eb4f-4b92-8088-7224bcbd0629", + "views": 9, + "change": 1.7096774193548385 + }, + { + "page": "/projects/2ef3655a-973d-4d69-9b41-21fa4041eed7/get-curl-command", + "views": 9, + "change": -0.32258064516129037 + }, + { + "page": "/projects/34da2c5f-8011-48af-a7fd-ad2f56ec10f4", + "views": 9, + "change": -0.18709677419354842 + }, + { + "page": "/projects/457d0bfe-79e4-43f1-be5d-83bf080d809e/get-curl-command", + "views": 9, + "change": -0.32258064516129037 + }, + { + "page": "/projects/52b29aa4-c8d6-42b4-807a-b35be94469ca", + "views": 9, + "change": -0.26099706744868034 + }, + { + "page": "/projects/591af954-cdcd-4839-96d3-a0d1b1e885ac", + "views": 9, + "change": -0.6748387096774193 + }, + { + "page": "/projects/5a54c617-0eed-486e-8c1a-8a8041fc1729", + "views": 9, + "change": -0.09677419354838701 + }, + { + "page": "/projects/5b5f05b7-2482-468d-b76d-8f68c04a7a47", + "views": 9, + "change": 0.16129032258064524 + }, + { + "page": "/projects/7dcffc32-7c82-4396-9a4f-88b5579bfe8a", + "views": 9, + "change": -0.32258064516129037 + }, + { + "page": "/projects/cdabcf0b-7602-4abf-9afb-3b410e545703/get-curl-command", + "views": 9, + "change": 1.7096774193548385 + }, + { + "page": "/projects/01aacb68-4076-4fd9-9eb9-aba0f48c1b5a", + "views": 9, + "change": -0.4193548387096774 + }, + { + "page": "/projects/04ad400c-58cb-40a5-bc2b-2279e13a910b/get-curl-command", + "views": 9, + "change": -0.6465638148667602 + }, + { + "page": "/projects/0c09fade-e079-4fde-8e60-6725b8c1d84b", + "views": 9, + "change": 1.032258064516129 + }, + { + "page": "/projects/5116c081-8be7-49c5-8ce0-73b887328aa9/project-metadata", + "views": 9, + "change": 3.064516129032258 + }, + { + "page": "/projects/86fe0a0c-88b3-4a3e-94a1-6f9feadc401e", + "views": 9, + "change": 0.16129032258064524 + }, + { + "page": "/projects/bcdf233f-9246-4c0c-9843-0514120b7e3a/project-matrices", + "views": 9, + "change": 7.129032258064516 + }, + { + "page": "/projects/c16a754f-5da3-46ed-8c1e-6426af2ef625/export-to-terra", + "views": 9, + "change": 0.16129032258064524 + }, + { + "page": "/projects/e0009214-c0a0-4a7b-96e2-d6a83e966ce0/get-curl-command", + "views": 9, + "change": -0.18709677419354842 + }, + { + "page": "/projects/ea9eec5a-4fc2-4c58-94d0-2fcb598732bc", + "views": 9, + "change": 0.16129032258064524 + }, + { + "page": "/projects/f2078d5f-2e7d-4844-8552-f7c41a231e52/export-to-terra", + "views": 9, + "change": 0.6258064516129032 + }, + { + "page": "/projects/bcdf233f-9246-4c0c-9843-0514120b7e3a/get-curl-command", + "views": 9, + "change": 3.064516129032258 + }, + { + "page": "/projects/c4077b3c-5c98-4d26-a614-246d12c2e5d7/get-curl-command", + "views": 9, + "change": -0.5935483870967742 + }, + { + "page": "/projects/cae461de-ecbd-482f-a5d4-11d607fc12ba/project-metadata", + "views": 9, + "change": 0.016129032258064502 + }, + { + "page": "/projects/e526d91d-cf3a-44cb-80c5-fd7676b55a1d", + "views": 9, + "change": -0.4580645161290323 + }, + { + "page": "/projects/e925633f-abd9-486a-81c6-1a6a66891d23/project-matrices", + "views": 9, + "change": 3.064516129032258 + }, + { + "page": "/analyze/portals/single-cell-portal", + "views": 9, + "change": 1.032258064516129 + }, + { + "page": "/projects/12f32054-8f18-4dae-8959-bfce7e3108e7/get-curl-command", + "views": 9, + "change": 0.016129032258064502 + }, + { + "page": "/projects/72ff4818-5692-4bbc-8886-e47763531023", + "views": 9, + "change": 0.6258064516129032 + }, + { + "page": "/projects/85c0d6fa-f117-4d76-b01a-5d5e8f5f9188/project-matrices", + "views": 9, + "change": 1.7096774193548385 + }, + { + "page": "/projects/888f1766-4c84-43bb-8717-b5f9d2046097/project-metadata", + "views": 9, + "change": null + }, + { + "page": "/projects/cd9d6360-ce38-4321-97df-f13c79e3cb84", + "views": 9, + "change": -0.26099706744868034 + }, + { + "page": "/projects/e88714c2-2e78-49da-8146-5a60b50628b4/project-metadata", + "views": 9, + "change": 3.064516129032258 + }, + { + "page": "/projects/8ab8726d-81b9-4bd2-acc2-4d50bee786b4/project-metadata", + "views": 9, + "change": 7.129032258064516 + }, + { + "page": "/projects/72ff4818-5692-4bbc-8886-e47763531023/get-curl-command", + "views": 9, + "change": null + }, + { + "page": "/guides/accessing-metadata-via-tdr", + "views": 8, + "change": -0.09677419354838712 + }, + { + "page": "/projects/3a694703-3084-4ece-9abe-d935fd5f6748", + "views": 8, + "change": 2.6129032258064515 + }, + { + "page": "/projects/c7a342eb-777e-4479-95ce-468f5bbcd893/project-matrices", + "views": 8, + "change": -0.343108504398827 + }, + { + "page": "/projects/e925633f-abd9-486a-81c6-1a6a66891d23/project-metadata", + "views": 8, + "change": 0.20430107526881724 + }, + { + "page": "/robots.txt", + "views": 8, + "change": 0.4451612903225808 + }, + { + "page": "/projects/0911cc04-06d6-4ffc-8318-b90b0039e8ad", + "views": 8, + "change": -0.4441687344913151 + }, + { + "page": "/projects/1fac187b-1c3f-41c4-b6b6-6a9a8c0489d1/project-metadata", + "views": 8, + "change": -0.3978494623655914 + }, + { + "page": "/projects/376a7f55-b876-4f60-9cf3-ed7bc83d5415/get-curl-command", + "views": 8, + "change": 0.032258064516129004 + }, + { + "page": "/projects/6e522b93-9b70-4f0c-9990-b9cff721251b", + "views": 8, + "change": 0.032258064516129004 + }, + { + "page": "/projects/896f377c-8e88-463e-82b0-b2a5409d6fe4/export-to-terra", + "views": 8, + "change": 0.032258064516129004 + }, + { + "page": "/projects/ce7b12ba-664f-4f79-8fc7-3de6b1892183", + "views": 8, + "change": 0.032258064516129004 + }, + { + "page": "/projects/e88714c2-2e78-49da-8146-5a60b50628b4/get-curl-command", + "views": 8, + "change": 1.4086021505376345 + }, + { + "page": "/projects/0cc58d0b-1734-4e1d-9113-b32e52f75e36/export-to-terra", + "views": 8, + "change": 6.225806451612903 + }, + { + "page": "/projects/4e6f083b-5b9a-4393-9890-2a83da8188f1", + "views": 8, + "change": 6.225806451612903 + }, + { + "page": "/projects/68df3629-d2d2-4eed-b0ab-a10e0f019b88", + "views": 8, + "change": -0.5182795698924731 + }, + { + "page": "/projects/6c040a93-8cf8-4fd5-98de-2297eb07e9f6", + "views": 8, + "change": -0.4441687344913151 + }, + { + "page": "/projects/7bc1f14b-5e64-4c7f-86b0-23596b97e2aa", + "views": 8, + "change": -0.5483870967741935 + }, + { + "page": "/projects/8a666b76-daaf-4b1f-9414-e4807a1d1e8b/get-curl-command", + "views": 8, + "change": 0.20430107526881724 + }, + { + "page": "/projects/90bd6933-40c0-48d4-8d76-778c103bf545", + "views": 8, + "change": 0.032258064516129004 + }, + { + "page": "/projects/94023a08-611d-4f22-a8c9-90956e091b2e/project-metadata", + "views": 8, + "change": -0.2774193548387096 + }, + { + "page": "/projects/9746f4e0-d3b2-4543-89b3-10288162851b", + "views": 8, + "change": -0.6387096774193548 + }, + { + "page": "/projects/a62dae2e-cd69-4d5c-b5f8-4f7e8abdbafa", + "views": 8, + "change": -0.4838709677419355 + }, + { + "page": "/projects/a80a63f2-e223-4890-81b0-415855b89abc/project-metadata", + "views": 8, + "change": -0.5985663082437276 + }, + { + "page": "/projects/bcdf233f-9246-4c0c-9843-0514120b7e3a/project-metadata", + "views": 8, + "change": null + }, + { + "page": "/projects/c41dffbf-ad83-447c-a0e1-13e689d9b258/project-metadata", + "views": 8, + "change": 0.8064516129032258 + }, + { + "page": "/projects/c5b475f2-76b3-4a8e-8465-f3b69828fec3", + "views": 8, + "change": -0.5483870967741935 + }, + { + "page": "/projects/cd61771b-661a-4e19-b269-6e5d95350de6/get-curl-command", + "views": 8, + "change": -0.7109677419354838 + }, + { + "page": "/projects/d5c91e92-2e7f-473d-8cf3-ab03bbae21c2", + "views": 8, + "change": -0.7419354838709677 + }, + { + "page": "/projects/e374c1cf-73fd-4a7a-8669-79dc41714984", + "views": 8, + "change": 6.225806451612903 + }, + { + "page": "/projects/f81efc03-9f56-4354-aabb-6ce819c3d414", + "views": 8, + "change": 1.4086021505376345 + }, + { + "page": "/projects/f83165c5-e2ea-4d15-a5cf-33f3550bffde/get-curl-command", + "views": 8, + "change": -0.6989247311827957 + }, + { + "page": "/projects/065e6c13-ad6b-46a3-8075-c3137eb03068/get-curl-command", + "views": 8, + "change": 1.4086021505376345 + }, + { + "page": "/projects/18d4aae2-8363-4e00-8eeb-b9e568402cf8", + "views": 8, + "change": -0.19713261648745517 + }, + { + "page": "/projects/1fac187b-1c3f-41c4-b6b6-6a9a8c0489d1/get-curl-command", + "views": 8, + "change": 0.4451612903225808 + }, + { + "page": "/projects/2b38025d-a5ea-4c0f-b22e-367824bcaf4c", + "views": 8, + "change": 2.6129032258064515 + }, + { + "page": "/projects/3cfcdff5-dee1-4a7b-a591-c09c6e850b11", + "views": 8, + "change": 0.8064516129032258 + }, + { + "page": "/projects/415eb773-cadb-43d1-ab89-7d160d5cfc7d", + "views": 8, + "change": 2.6129032258064515 + }, + { + "page": "/projects/4a95101c-9ffc-4f30-a809-f04518a23803/project-matrices", + "views": 8, + "change": 6.225806451612903 + }, + { + "page": "/projects/4af795f7-3e1d-4341-b867-4ac0982b9efd/get-curl-command", + "views": 8, + "change": 1.4086021505376345 + }, + { + "page": "/projects/50db6ba4-3986-4d55-86b7-e1a5a888a17b/project-matrices", + "views": 8, + "change": 0.032258064516129004 + }, + { + "page": "/projects/7be05025-9972-493a-856f-3342a8d1b183/project-metadata", + "views": 8, + "change": 6.225806451612903 + }, + { + "page": "/projects/990d251f-6dab-4a98-a2b6-6cfe7e4708b9", + "views": 8, + "change": 2.6129032258064515 + }, + { + "page": "/projects/a004b150-1c36-4af6-9bbd-070c06dbc17d/project-matrices", + "views": 8, + "change": 6.225806451612903 + }, + { + "page": "/projects/b733dc1b-1d55-45e3-8036-7eab0821742c", + "views": 8, + "change": 6.225806451612903 + }, + { + "page": "/projects/bd400331-54b9-4fcc-bff6-6bb8b079ee1f", + "views": 8, + "change": 0.8064516129032258 + }, + { + "page": "/projects/c6ef0270-eafc-43bd-8097-c10020a03cfc/get-curl-command", + "views": 8, + "change": 0.8064516129032258 + }, + { + "page": "/projects/e6773550-c1a6-4949-8643-1a3154cf2670", + "views": 8, + "change": 0.032258064516129004 + }, + { + "page": "/projects/efea6426-510a-4b60-9a19-277e52bfa815/project-metadata", + "views": 8, + "change": 0.8064516129032258 + }, + { + "page": "/contribute/submitting-fastqs-and-tier-2-metadata-to-the-hca-data-repository", + "views": 8, + "change": 6.225806451612903 + }, + { + "page": "/projects/03c6fce7-789e-4e78-a27a-664d562bb738/project-matrices", + "views": 8, + "change": null + }, + { + "page": "/projects/2caedc30-c816-4b99-a237-b9f3b458c8e5/get-curl-command", + "views": 8, + "change": 6.225806451612903 + }, + { + "page": "/projects/69324a96-a68a-4514-bbb4-f8f3ea4bd0f1", + "views": 8, + "change": 1.4086021505376345 + }, + { + "page": "/projects/a80a63f2-e223-4890-81b0-415855b89abc/project-matrices", + "views": 8, + "change": -0.7220843672456576 + }, + { + "page": "/projects/379ed69e-be05-48bc-af5e-a7fc589709bf/project-matrices", + "views": 8, + "change": 1.4086021505376345 + }, + { + "page": "/projects/cd9d6360-ce38-4321-97df-f13c79e3cb84/get-curl-command", + "views": 8, + "change": -0.09677419354838712 + }, + { + "page": "/projects/cd9d6360-ce38-4321-97df-f13c79e3cb84/project-matrices", + "views": 8, + "change": 1.4086021505376345 + }, + { + "page": "/projects/6735ff73-1a04-422e-b500-730202e46f8a/get-curl-command", + "views": 8, + "change": null + }, + { + "page": "/projects/08fb10df-32e5-456c-9882-e33fcd49077a", + "views": 7, + "change": -0.5483870967741935 + }, + { + "page": "/projects/0efecd20-2b52-4e4f-96c5-9b4b94158713", + "views": 7, + "change": 0.2645161290322582 + }, + { + "page": "/projects/2d4d89f2-ebeb-467c-ae60-a3efc5e8d4ba", + "views": 7, + "change": 1.10752688172043 + }, + { + "page": "/projects/46a7e4bf-0474-4a8f-8d18-43afcde90491", + "views": 7, + "change": 1.10752688172043 + }, + { + "page": "/projects/a39728aa-70a0-4201-b0a2-81b7badf3e71/project-metadata", + "views": 7, + "change": -0.4731182795698925 + }, + { + "page": "/projects/bba2f908-e0cb-4ee7-b007-f9c650e08be0", + "views": 7, + "change": -0.6048387096774194 + }, + { + "page": "/projects/d8ae869c-39c2-4cdd-b3fc-2d0d8f60e7b8", + "views": 7, + "change": -0.20967741935483875 + }, + { + "page": "/projects/e0009214-c0a0-4a7b-96e2-d6a83e966ce0/project-matrices", + "views": 7, + "change": 0.053763440860215006 + }, + { + "page": "/hca-bio-networks/oral", + "views": 7, + "change": -0.6048387096774194 + }, + { + "page": "/projects/07d5987e-7f9e-4f34-b0fb-a185a35504f5", + "views": 7, + "change": -0.578494623655914 + }, + { + "page": "/projects/1ebe8c34-454e-4c28-bd71-3a3e8b127be4/get-curl-command", + "views": 7, + "change": -0.20967741935483875 + }, + { + "page": "/projects/2245bca0-6563-4e88-ab26-f2b8f60383a7/export-to-terra", + "views": 7, + "change": 0.2645161290322582 + }, + { + "page": "/projects/23587fb3-1a4a-4f58-ad74-cc9a4cb4c254", + "views": 7, + "change": -0.09677419354838712 + }, + { + "page": "/projects/272b7602-66cd-4b02-a86b-2b7c9c51a9ea", + "views": 7, + "change": -0.2974910394265232 + }, + { + "page": "/projects/28371655-60ba-449e-a303-5859b29ead65", + "views": 7, + "change": -0.20967741935483875 + }, + { + "page": "/projects/2e40df1e-d3c2-48b4-8a17-c46e34d7be59", + "views": 7, + "change": -0.7658303464755077 + }, + { + "page": "/projects/2fe3c60b-ac1a-4c61-9b59-f6556c0fce63/project-matrices", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/projects/474a4229-840e-4d63-82af-8d3aa615ee17", + "views": 7, + "change": -0.4252199413489737 + }, + { + "page": "/projects/6f03e4ad-9305-4bfa-a5b6-929ffb1d94bd/project-metadata", + "views": 7, + "change": 0.2645161290322582 + }, + { + "page": "/projects/9833669b-d694-4b93-a3d0-6b6f9dbcfc10", + "views": 7, + "change": -0.8419354838709677 + }, + { + "page": "/projects/b10cd314-3e71-4437-9a16-77028d243e81/project-matrices", + "views": 7, + "change": -0.2974910394265232 + }, + { + "page": "/projects/b10cd314-3e71-4437-9a16-77028d243e81/project-metadata", + "views": 7, + "change": 0.053763440860215006 + }, + { + "page": "/projects/cdabcf0b-7602-4abf-9afb-3b410e545703/project-metadata", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/projects/daf9d982-7ce6-43f6-ab51-272577290606/get-curl-command", + "views": 7, + "change": null + }, + { + "page": "/projects/e5fe8274-3769-4d7d-aa35-6d33c226ab43", + "views": 7, + "change": -0.20967741935483875 + }, + { + "page": "/projects/ea9f4ea7-d7b3-41e7-b23a-43f95f569074", + "views": 7, + "change": -0.09677419354838712 + }, + { + "page": "/projects/fde199d2-a841-4ed1-aa65-b9e0af8969b1/get-curl-command", + "views": 7, + "change": 0.2645161290322582 + }, + { + "page": "/hca-bio-networks/pancreas/datasets", + "views": 7, + "change": -0.7470967741935484 + }, + { + "page": "/projects/03c6fce7-789e-4e78-a27a-664d562bb738/get-curl-command", + "views": 7, + "change": 2.161290322580645 + }, + { + "page": "/projects/065e6c13-ad6b-46a3-8075-c3137eb03068/project-matrices", + "views": 7, + "change": 2.161290322580645 + }, + { + "page": "/projects/091cf39b-01bc-42e5-9437-f419a66c8a45/export-to-terra", + "views": 7, + "change": -0.3677419354838709 + }, + { + "page": "/projects/1538d572-bcb7-426b-8d2c-84f3a7f87bb0", + "views": 7, + "change": -0.4731182795698925 + }, + { + "page": "/projects/1fac187b-1c3f-41c4-b6b6-6a9a8c0489d1/project-matrices", + "views": 7, + "change": -0.20967741935483875 + }, + { + "page": "/projects/38e34131-62fc-4323-b435-15113dfd6dcc/get-curl-command", + "views": 7, + "change": 0.5806451612903225 + }, + { + "page": "/projects/48f60534-ba4e-45bc-aa5b-6d3a6c45962e", + "views": 7, + "change": -0.2974910394265232 + }, + { + "page": "/projects/5116c081-8be7-49c5-8ce0-73b887328aa9/project-matrices", + "views": 7, + "change": null + }, + { + "page": "/projects/575c0ad9-c78e-469b-9fdf-9a68dd881137", + "views": 7, + "change": 1.10752688172043 + }, + { + "page": "/projects/58028aa8-0ed2-49ca-b60f-15e2ed5989d5", + "views": 7, + "change": -0.09677419354838712 + }, + { + "page": "/projects/6874b7eb-3445-47ec-8773-75141430e169", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/projects/77780d56-03c0-481f-aade-2038490cef9f/project-metadata", + "views": 7, + "change": -0.3677419354838709 + }, + { + "page": "/projects/815c5ef5-0fb1-4eb7-9882-1d160362468e/get-curl-command", + "views": 7, + "change": 1.10752688172043 + }, + { + "page": "/projects/8f1f653d-3ea1-4d8e-b4a7-b97dc852c2b1/export-to-terra", + "views": 7, + "change": 2.161290322580645 + }, + { + "page": "/projects/ae62bb31-55ca-4127-b0fb-b1771a604645", + "views": 7, + "change": -0.09677419354838712 + }, + { + "page": "/projects/b3938158-4e8d-4fdb-9e13-9e94270dde16/project-metadata", + "views": 7, + "change": -0.5483870967741935 + }, + { + "page": "/projects/c31fa434-c9ed-4263-a9b6-d9ffb9d44005/get-curl-command", + "views": 7, + "change": -0.578494623655914 + }, + { + "page": "/projects/c7c54245-548b-4d4f-b15e-0d7e238ae6c8", + "views": 7, + "change": 0.2645161290322582 + }, + { + "page": "/projects/cb4e5e44-d898-4819-a456-393527c3186f", + "views": 7, + "change": 0.5806451612903225 + }, + { + "page": "/projects/cdabcf0b-7602-4abf-9afb-3b410e545703/project-matrices", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/projects/daef3fda-2620-45ae-a3f7-1613814a35bf/project-metadata", + "views": 7, + "change": 2.161290322580645 + }, + { + "page": "/projects/f4d011ce-d1f5-48a4-ab61-ae14176e3a6e", + "views": 7, + "change": -0.6048387096774194 + }, + { + "page": "/projects/fa3f460f-4fb9-4ced-b548-8ba6a8ecae3f/project-metadata", + "views": 7, + "change": 1.10752688172043 + }, + { + "page": "/projects/1eba4d0b-2d15-4ba7-bb3c-d4654dd94519/project-matrices", + "views": 7, + "change": 2.161290322580645 + }, + { + "page": "/projects/377c35d1-93bf-470c-8067-08f954b269bd", + "views": 7, + "change": 1.10752688172043 + }, + { + "page": "/projects/3c27d2dd-b180-4b2b-bf05-e2e418393fd1/project-metadata", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/projects/581de139-461f-4875-b408-56453a9082c7/get-curl-command", + "views": 7, + "change": -0.20967741935483875 + }, + { + "page": "/projects/92892ab2-1334-4b1c-9761-14f5a73548ea", + "views": 7, + "change": 0.5806451612903225 + }, + { + "page": "/projects/b32a9915-c81b-4cbc-af53-3a66b5da3c9a/project-metadata", + "views": 7, + "change": null + }, + { + "page": "/projects/c16a754f-5da3-46ed-8c1e-6426af2ef625/project-matrices", + "views": 7, + "change": -0.2974910394265232 + }, + { + "page": "/projects/c5f46615-68de-4cf4-bbc2-a0ae10f08243/export-to-terra", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/projects/febdaddd-ad3c-4f4a-820f-ade15c48545a/project-metadata", + "views": 7, + "change": 0.053763440860215006 + }, + { + "page": "/projects/08c7910b-5ebb-4dfc-a866-5bf392ef3b36", + "views": 7, + "change": -0.20967741935483875 + }, + { + "page": "/projects/0fd8f918-62d6-4b8b-ac35-4c53dd601f71/project-matrices", + "views": 7, + "change": -0.09677419354838712 + }, + { + "page": "/projects/1c5eaabf-075b-4b7a-a9e6-07792c2034b3/export-to-terra", + "views": 7, + "change": null + }, + { + "page": "/projects/1eba4d0b-2d15-4ba7-bb3c-d4654dd94519/get-curl-command", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/projects/326b36bd-0975-475f-983b-56ddb8f73a4d/get-curl-command", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/projects/425c2759-db66-4c93-a358-a562c069b1f1/get-curl-command", + "views": 7, + "change": 0.5806451612903225 + }, + { + "page": "/projects/5bb1f67e-2ff0-4848-bbcf-17d133f0fd2d", + "views": 7, + "change": -0.20967741935483875 + }, + { + "page": "/projects/815c5ef5-0fb1-4eb7-9882-1d160362468e/project-matrices", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/projects/aa55000c-0168-48d8-9026-2d3a76ec8af3", + "views": 7, + "change": 0.5806451612903225 + }, + { + "page": "/projects/b32a9915-c81b-4cbc-af53-3a66b5da3c9a/get-curl-command", + "views": 7, + "change": 2.161290322580645 + }, + { + "page": "/projects/df8eb7ce-3707-46af-b823-e081a562e954/get-curl-command", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/projects/e1fda217-7ee1-4c1a-adfa-648279dafac6/project-matrices", + "views": 7, + "change": null + }, + { + "page": "/projects/87f519b4-8862-41f9-acff-75e823e0e430/project-matrices", + "views": 7, + "change": null + }, + { + "page": "/projects/9dd91b6e-7c62-49d3-a3d4-74f603deffdb/get-curl-command", + "views": 7, + "change": null + }, + { + "page": "/projects/a60803bb-f7db-45cf-b529-95436152a801", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/projects/f7b46477-0f2a-4bff-a9b7-719e000499a3/project-matrices", + "views": 7, + "change": null + }, + { + "page": "/projects/f7b46477-0f2a-4bff-a9b7-719e000499a3/project-metadata", + "views": 7, + "change": null + }, + { + "page": "/projects/279f1766-3319-4e3c-9f99-6fb59ba9b3e5/get-curl-command", + "views": 7, + "change": null + }, + { + "page": "/projects/7c75f07c-608d-4c4a-a1b7-b13d11c0ad31/get-curl-command", + "views": 7, + "change": null + }, + { + "page": "/projects/febdaddd-ad3c-4f4a-820f-ade15c48545a/export-to-terra", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/projects/0c3b7785-f74d-4091-8616-a68757e4c2a8", + "views": 6, + "change": -0.32258064516129037 + }, + { + "page": "/projects/16cd6791-2adb-4d0f-8222-0184dada6456/project-metadata", + "views": 6, + "change": -0.32258064516129037 + }, + { + "page": "/projects/258c5e15-d125-4f2d-8b4c-e3122548ec9b", + "views": 6, + "change": -0.4580645161290322 + }, + { + "page": "/projects/2d846095-8a33-4f3c-97d4-585bafac13b4", + "views": 6, + "change": -0.09677419354838712 + }, + { + "page": "/projects/3627473e-b6d6-45c9-87b5-b9f12ce57a10", + "views": 6, + "change": -0.32258064516129037 + }, + { + "page": "/projects/425c2759-db66-4c93-a358-a562c069b1f1/project-matrices", + "views": 6, + "change": 0.35483870967741926 + }, + { + "page": "/projects/455b46e6-d8ea-4611-861e-de720a562ada/export-to-terra", + "views": 6, + "change": 0.8064516129032258 + }, + { + "page": "/projects/65858543-530d-48a6-a670-f972b34dfe10", + "views": 6, + "change": -0.32258064516129037 + }, + { + "page": "/projects/c4077b3c-5c98-4d26-a614-246d12c2e5d7/project-metadata", + "views": 6, + "change": -0.32258064516129037 + }, + { + "page": "/projects/cc35f94e-e93b-4dbd-a08c-702978d9046f", + "views": 6, + "change": 4.419354838709677 + }, + { + "page": "/projects/fde199d2-a841-4ed1-aa65-b9e0af8969b1/project-matrices", + "views": 6, + "change": -0.5483870967741935 + }, + { + "page": "/hca-bio-networks/heart/datasets", + "views": 6, + "change": -0.7147707979626485 + }, + { + "page": "/hca-bio-networks/organoid/atlases/organoid-neural-v1-0/datasets", + "views": 6, + "change": -0.09677419354838712 + }, + { + "page": "/projects/065e6c13-ad6b-46a3-8075-c3137eb03068/project-metadata", + "views": 6, + "change": 0.35483870967741926 + }, + { + "page": "/projects/1662accf-0e0c-48c4-9314-5aba063f2220/export-to-terra", + "views": 6, + "change": -0.3978494623655914 + }, + { + "page": "/projects/16cd6791-2adb-4d0f-8222-0184dada6456/get-curl-command", + "views": 6, + "change": -0.6812144212523719 + }, + { + "page": "/projects/3bb95c61-630d-4970-ae40-8a951bd11cc1", + "views": 6, + "change": -0.22580645161290325 + }, + { + "page": "/projects/4bdaedeb-99ae-4fb4-be69-57497cf98b90", + "views": 6, + "change": -0.09677419354838712 + }, + { + "page": "/projects/520afa10-f9d2-4e93-ab7a-26c4c863ce18", + "views": 6, + "change": -0.3978494623655914 + }, + { + "page": "/projects/6f03e4ad-9305-4bfa-a5b6-929ffb1d94bd/project-matrices", + "views": 6, + "change": null + }, + { + "page": "/projects/7f351a4c-d24c-4fcd-9040-f79071b097d0", + "views": 6, + "change": 0.8064516129032258 + }, + { + "page": "/projects/94023a08-611d-4f22-a8c9-90956e091b2e/project-matrices", + "views": 6, + "change": -0.22580645161290325 + }, + { + "page": "/projects/99101928-d9b1-4aaf-b759-e97958ac7403", + "views": 6, + "change": 1.7096774193548385 + }, + { + "page": "/projects/9bef1e81-e5d9-4ece-81cb-ab7449232021", + "views": 6, + "change": 4.419354838709677 + }, + { + "page": "/projects/a80a63f2-e223-4890-81b0-415855b89abc/get-curl-command", + "views": 6, + "change": -0.7419354838709677 + }, + { + "page": "/projects/b963bd4b-4bc1-4404-8425-69d74bc636b8", + "views": 6, + "change": -0.22580645161290325 + }, + { + "page": "/projects/e49e556a-da5a-442a-b45c-8691b457623e", + "views": 6, + "change": -0.5073313782991202 + }, + { + "page": "/projects/ec6476ee-2949-41f3-947b-8eef41d6d3ac", + "views": 6, + "change": -0.22580645161290325 + }, + { + "page": "/projects/f6133d2a-9f3d-4ef9-9c19-c23d6c7e6cc0", + "views": 6, + "change": -0.32258064516129037 + }, + { + "page": "/projects/fc2a0b4e-1e4a-447b-a097-47b398402f37/get-curl-command", + "views": 6, + "change": null + }, + { + "page": "/hca-bio-networks/skin/datasets", + "views": 6, + "change": -0.3978494623655914 + }, + { + "page": "/projects/1c5eaabf-075b-4b7a-a9e6-07792c2034b3/project-metadata", + "views": 6, + "change": null + }, + { + "page": "/projects/2caedc30-c816-4b99-a237-b9f3b458c8e5/project-metadata", + "views": 6, + "change": null + }, + { + "page": "/projects/2d559a6e-7cd9-432f-9f6e-0e4df03b0888/export-to-terra", + "views": 6, + "change": 1.7096774193548385 + }, + { + "page": "/projects/3089d311-f9ed-44dd-bb10-397059bad4dc", + "views": 6, + "change": -0.6812144212523719 + }, + { + "page": "/projects/42d4f8d4-5422-4b78-adae-e7c3c2ef511c", + "views": 6, + "change": 0.35483870967741926 + }, + { + "page": "/projects/4627f43e-a43f-44dd-8c4b-7efddb3f296d/project-matrices", + "views": 6, + "change": -0.6612903225806452 + }, + { + "page": "/projects/4a95101c-9ffc-4f30-a809-f04518a23803/project-metadata", + "views": 6, + "change": 4.419354838709677 + }, + { + "page": "/projects/4d9d56e4-610d-4748-b57d-f8315e3f53a3/get-curl-command", + "views": 6, + "change": -0.32258064516129037 + }, + { + "page": "/projects/581de139-461f-4875-b408-56453a9082c7/project-metadata", + "views": 6, + "change": -0.09677419354838712 + }, + { + "page": "/projects/5ee710d7-e2d5-4fe2-818d-15f5e31dae32/get-curl-command", + "views": 6, + "change": 4.419354838709677 + }, + { + "page": "/projects/6621c827-b57a-4268-bc80-df4049140193/get-curl-command", + "views": 6, + "change": null + }, + { + "page": "/projects/6f03e4ad-9305-4bfa-a5b6-929ffb1d94bd/get-curl-command", + "views": 6, + "change": 0.35483870967741926 + }, + { + "page": "/projects/71eb5f6d-cee0-4297-b503-b1125909b8c7", + "views": 6, + "change": -0.22580645161290325 + }, + { + "page": "/projects/77780d56-03c0-481f-aade-2038490cef9f/get-curl-command", + "views": 6, + "change": -0.6129032258064516 + }, + { + "page": "/projects/77c13c40-a598-4036-807f-be09209ec2dd/get-curl-command", + "views": 6, + "change": null + }, + { + "page": "/projects/7c75f07c-608d-4c4a-a1b7-b13d11c0ad31/project-matrices", + "views": 6, + "change": null + }, + { + "page": "/projects/8a666b76-daaf-4b1f-9414-e4807a1d1e8b/project-matrices", + "views": 6, + "change": 1.7096774193548385 + }, + { + "page": "/projects/925f9a4c-cac0-444a-ad2c-612656ab3a85", + "views": 6, + "change": -0.6989247311827957 + }, + { + "page": "/projects/95d058bc-9cec-4c88-8d2c-05b4a45bf24f", + "views": 6, + "change": 4.419354838709677 + }, + { + "page": "/projects/9dd91b6e-7c62-49d3-a3d4-74f603deffdb", + "views": 6, + "change": null + }, + { + "page": "/projects/a815c84b-8999-433f-958e-422c0720e00d/get-curl-command", + "views": 6, + "change": 0.08387096774193559 + }, + { + "page": "/projects/cae461de-ecbd-482f-a5d4-11d607fc12ba/get-curl-command", + "views": 6, + "change": -0.6989247311827957 + }, + { + "page": "/projects/daef3fda-2620-45ae-a3f7-1613814a35bf/project-matrices", + "views": 6, + "change": 1.7096774193548385 + }, + { + "page": "/projects/e889ffc9-86f6-44f5-b684-dfce78e552a3", + "views": 6, + "change": 0.08387096774193559 + }, + { + "page": "/projects/ef1d9888-fa86-47a4-bb72-0ab0f20f7004/project-matrices", + "views": 6, + "change": 0.35483870967741926 + }, + { + "page": "/projects/ef1d9888-fa86-47a4-bb72-0ab0f20f7004/project-metadata", + "views": 6, + "change": 0.08387096774193559 + }, + { + "page": "/projects/efea6426-510a-4b60-9a19-277e52bfa815/project-matrices", + "views": 6, + "change": 0.08387096774193559 + }, + { + "page": "/projects/fa3f460f-4fb9-4ced-b548-8ba6a8ecae3f/get-curl-command", + "views": 6, + "change": -0.4580645161290322 + }, + { + "page": "/projects/fa3f460f-4fb9-4ced-b548-8ba6a8ecae3f/project-matrices", + "views": 6, + "change": 0.8064516129032258 + }, + { + "page": "/projects/08b794a0-519c-4516-b184-c583746254c5", + "views": 6, + "change": -0.22580645161290325 + }, + { + "page": "/projects/1c5eaabf-075b-4b7a-a9e6-07792c2034b3/project-matrices", + "views": 6, + "change": 4.419354838709677 + }, + { + "page": "/projects/1fa8b11f-56fa-45a6-a777-6af70e17a6b3", + "views": 6, + "change": -0.3978494623655914 + }, + { + "page": "/projects/2caedc30-c816-4b99-a237-b9f3b458c8e5/project-matrices", + "views": 6, + "change": 4.419354838709677 + }, + { + "page": "/projects/4627f43e-a43f-44dd-8c4b-7efddb3f296d/export-to-terra", + "views": 6, + "change": -0.32258064516129037 + }, + { + "page": "/projects/577c946d-6de5-4b55-a854-cd3fde40bff2", + "views": 6, + "change": -0.6612903225806452 + }, + { + "page": "/projects/57916660-af5a-44d5-a7a9-2e84b65f8a68/get-curl-command", + "views": 6, + "change": null + }, + { + "page": "/projects/6e177195-0ac0-468b-99a2-87de96dc9db4/get-curl-command", + "views": 6, + "change": 1.7096774193548385 + }, + { + "page": "/projects/7c599029-7a3c-4b5c-8e79-e72c9a9a65fe/project-matrices", + "views": 6, + "change": 1.7096774193548385 + }, + { + "page": "/projects/842605c7-375a-47c5-9e2c-a71c2c00fcad", + "views": 6, + "change": 1.7096774193548385 + }, + { + "page": "/projects/8f1f653d-3ea1-4d8e-b4a7-b97dc852c2b1/project-metadata", + "views": 6, + "change": 1.7096774193548385 + }, + { + "page": "/projects/946c5add-47d1-402a-97bb-a5af97e8bce7", + "views": 6, + "change": -0.22580645161290325 + }, + { + "page": "/projects/9762d70c-9b27-4f57-8cbc-377b9b92ea9b", + "views": 6, + "change": -0.22580645161290325 + }, + { + "page": "/projects/9f17ed7d-9325-4723-a120-b00e48db20c0/project-metadata", + "views": 6, + "change": 0.8064516129032258 + }, + { + "page": "/projects/9ff75ece-ce81-483a-bb1f-85e727f3805b", + "views": 6, + "change": -0.09677419354838712 + }, + { + "page": "/projects/cbd2911f-252b-4428-abde-69e270aefdfc/project-metadata", + "views": 6, + "change": -0.3978494623655914 + }, + { + "page": "/projects/e88714c2-2e78-49da-8146-5a60b50628b4/project-matrices", + "views": 6, + "change": 0.8064516129032258 + }, + { + "page": "/projects/414acced-eba0-440f-b721-befbc5642bef/get-curl-command", + "views": 6, + "change": 4.419354838709677 + }, + { + "page": "/projects/4e6f083b-5b9a-4393-9890-2a83da8188f1/project-matrices", + "views": 6, + "change": null + }, + { + "page": "/projects/57916660-af5a-44d5-a7a9-2e84b65f8a68/project-metadata", + "views": 6, + "change": null + }, + { + "page": "/projects/87f519b4-8862-41f9-acff-75e823e0e430/get-curl-command", + "views": 6, + "change": 4.419354838709677 + }, + { + "page": "/projects/8ab8726d-81b9-4bd2-acc2-4d50bee786b4/get-curl-command", + "views": 6, + "change": 4.419354838709677 + }, + { + "page": "/projects/990d251f-6dab-4a98-a2b6-6cfe7e4708b9/get-curl-command", + "views": 6, + "change": null + }, + { + "page": "/projects/f7b46477-0f2a-4bff-a9b7-719e000499a3/export-to-terra", + "views": 6, + "change": null + }, + { + "page": "/pipelines", + "views": 6, + "change": null + }, + { + "page": "/hca-bio-networks/breast/datasets", + "views": 5, + "change": -0.24731182795698925 + }, + { + "page": "/metadata/dictionary/project/funder", + "views": 5, + "change": 0.5053763440860215 + }, + { + "page": "/projects/2f676143-80c2-4bc6-b7b4-2613fe0fadf0", + "views": 5, + "change": -0.6236559139784946 + }, + { + "page": "/projects/38449aea-70b5-40db-84b3-1e08f32efe34", + "views": 5, + "change": 0.5053763440860215 + }, + { + "page": "/projects/3d49e5e5-976f-44cb-b6b9-079016c31c56/get-curl-command", + "views": 5, + "change": -0.3548387096774194 + }, + { + "page": "/projects/504e0cee-1688-40fa-b936-361c4a831f87", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/64809a52-f703-4aec-b3a5-eca808a971d0/export-to-terra", + "views": 5, + "change": null + }, + { + "page": "/projects/739ef78a-ba5d-4487-a013-9982db66d222", + "views": 5, + "change": -0.24731182795698925 + }, + { + "page": "/projects/75dbbce9-0cde-489c-88a7-93e8f92914a3/get-curl-command", + "views": 5, + "change": 0.12903225806451601 + }, + { + "page": "/projects/76bc0e97-8cae-43d4-a647-477a13be47f9/export-to-terra", + "views": 5, + "change": 0.5053763440860215 + }, + { + "page": "/projects/91674dcf-8641-40e6-978d-c1706feffba8", + "views": 5, + "change": -0.7947214076246334 + }, + { + "page": "/projects/923d3231-7295-4184-b3f6-c3082766a8c7/export-to-terra", + "views": 5, + "change": 0.5053763440860215 + }, + { + "page": "/projects/996120f9-e84f-409f-a01e-732ab58ca8b9", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/9c20a245-f2c0-43ae-82c9-2232ec6b594f/export-to-terra", + "views": 5, + "change": -0.435483870967742 + }, + { + "page": "/projects/a2a2f324-cf24-409e-a859-deaee871269c", + "views": 5, + "change": -0.24731182795698925 + }, + { + "page": "/projects/ad04c8e7-9b7d-4cce-b8e9-01e31da10b94", + "views": 5, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c5ca43aa-3b2b-4216-8eb3-f57adcbc99a1", + "views": 5, + "change": -0.5894428152492669 + }, + { + "page": "/projects/d7845650-f6b1-4b1c-b2fe-c0795416ba7b", + "views": 5, + "change": -0.6989247311827957 + }, + { + "page": "/projects/fc2a0b4e-1e4a-447b-a097-47b398402f37/project-metadata", + "views": 5, + "change": 0.5053763440860215 + }, + { + "page": "/hca-bio-networks/immune/datasets", + "views": 5, + "change": -0.8327359617682198 + }, + { + "page": "/projects/005d611a-14d5-4fbf-846e-571a1f874f70/project-metadata", + "views": 5, + "change": null + }, + { + "page": "/projects/0792db34-8047-4e62-802c-9177c9cd8e28/get-curl-command", + "views": 5, + "change": 3.516129032258064 + }, + { + "page": "/projects/0b299140-25b5-4861-a69f-7651ff3f46cf", + "views": 5, + "change": 0.12903225806451601 + }, + { + "page": "/projects/116965f3-f094-4769-9d28-ae675c1b569c", + "views": 5, + "change": -0.3548387096774194 + }, + { + "page": "/projects/12f32054-8f18-4dae-8959-bfce7e3108e7/project-matrices", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/16241d82-3119-4bdd-bba5-5097c0591ba0/export-to-terra", + "views": 5, + "change": null + }, + { + "page": "/projects/19037ec9-43a7-4823-b93f-9e59c694d17e", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/1c5eaabf-075b-4b7a-a9e6-07792c2034b3/get-curl-command", + "views": 5, + "change": 3.516129032258064 + }, + { + "page": "/projects/1ebe8c34-454e-4c28-bd71-3a3e8b127be4/project-metadata", + "views": 5, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2973a42c-f810-4812-9a23-5bbc9644588d", + "views": 5, + "change": -0.6236559139784946 + }, + { + "page": "/projects/2af52a13-65cb-4973-b513-39be38f2df3f/get-curl-command", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/2af52a13-65cb-4973-b513-39be38f2df3f/project-metadata", + "views": 5, + "change": null + }, + { + "page": "/projects/2b81ecc4-6ee0-438f-8c5b-c10b2464069e/project-metadata", + "views": 5, + "change": null + }, + { + "page": "/projects/3c27d2dd-b180-4b2b-bf05-e2e418393fd1/get-curl-command", + "views": 5, + "change": null + }, + { + "page": "/projects/3d49e5e5-976f-44cb-b6b9-079016c31c56/project-matrices", + "views": 5, + "change": -0.24731182795698925 + }, + { + "page": "/projects/54aaa409-dc28-48c5-be26-d368b4a5d5c6/project-metadata", + "views": 5, + "change": null + }, + { + "page": "/projects/5ee710d7-e2d5-4fe2-818d-15f5e31dae32/project-metadata", + "views": 5, + "change": 3.516129032258064 + }, + { + "page": "/projects/6179c38c-9987-4e7c-a4bb-d34cf33a3c3f/export-to-terra", + "views": 5, + "change": -0.3548387096774194 + }, + { + "page": "/projects/660fc8b5-8fb8-4050-8c57-e6313195bc81/project-metadata", + "views": 5, + "change": 0.5053763440860215 + }, + { + "page": "/projects/66d7d92a-d6c5-492c-815b-f81c7c93c984", + "views": 5, + "change": -0.5483870967741935 + }, + { + "page": "/projects/6936da41-3692-46bb-bca1-cd0f507991e9/export-to-terra", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/6ac8e777-f9a0-4288-b5b0-446e8eba3078", + "views": 5, + "change": -0.6774193548387097 + }, + { + "page": "/projects/78d7805b-fdc8-472b-8058-d92cf886f7a4", + "views": 5, + "change": -0.3548387096774194 + }, + { + "page": "/projects/79351583-b212-44ba-b473-731bdcddb407/project-metadata", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/7f980afc-4e01-4b9c-a9a1-f50e17fce8c2/get-curl-command", + "views": 5, + "change": null + }, + { + "page": "/projects/838d4660-3d62-4b08-b32d-dc5cbd93919d", + "views": 5, + "change": -0.6236559139784946 + }, + { + "page": "/projects/a815c84b-8999-433f-958e-422c0720e00d/project-metadata", + "views": 5, + "change": -0.09677419354838712 + }, + { + "page": "/projects/abe1a013-af7a-45ed-8c26-f3793c24a1f4/project-metadata", + "views": 5, + "change": -0.826302729528536 + }, + { + "page": "/projects/b208466a-6fb0-4385-8cfb-8e03ff6b939e/project-matrices", + "views": 5, + "change": -0.5483870967741935 + }, + { + "page": "/projects/b208466a-6fb0-4385-8cfb-8e03ff6b939e/project-metadata", + "views": 5, + "change": -0.4982078853046594 + }, + { + "page": "/projects/b91c623b-1945-4727-b167-0a93027b0d3f", + "views": 5, + "change": -0.09677419354838712 + }, + { + "page": "/projects/d2111fac-3fc4-4f42-9b6d-32cd6a828267", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/dd7f2436-0c56-4709-bd17-e526bba4cc15", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/e090445c-6971-4212-bc5f-ae4ec3914102/project-metadata", + "views": 5, + "change": 3.516129032258064 + }, + { + "page": "/projects/ef1e3497-515e-4bbe-8d4c-10161854b699/export-to-terra", + "views": 5, + "change": 3.516129032258064 + }, + { + "page": "/projects/f29b124a-8597-4862-ae98-ff3a0fd9033e", + "views": 5, + "change": 0.12903225806451601 + }, + { + "page": "/projects/f598aee0-d269-4036-90e9-d6d5b1c84429/get-curl-command", + "views": 5, + "change": -0.3548387096774194 + }, + { + "page": "/projects/f83165c5-e2ea-4d15-a5cf-33f3550bffde/project-matrices", + "views": 5, + "change": -0.8118279569892473 + }, + { + "page": "/projects/f83165c5-e2ea-4d15-a5cf-33f3550bffde/project-metadata", + "views": 5, + "change": -0.7623089983022071 + }, + { + "page": "/hca-bio-networks/adipose/datasets", + "views": 5, + "change": -0.4982078853046594 + }, + { + "page": "/projects/087efc3c-2601-4de6-bbe9-0114593050d1/get-curl-command", + "views": 5, + "change": 0.12903225806451601 + }, + { + "page": "/projects/18e58437-76b7-4021-8ede-3f0b443fa915/get-curl-command", + "views": 5, + "change": -0.435483870967742 + }, + { + "page": "/projects/2184e63d-82d8-4ab2-839e-e93f8395f568/project-matrices", + "views": 5, + "change": 3.516129032258064 + }, + { + "page": "/projects/2ad191cd-bd7a-409b-9bd1-e72b5e4cce81", + "views": 5, + "change": 0.12903225806451601 + }, + { + "page": "/projects/2ef3655a-973d-4d69-9b41-21fa4041eed7/project-matrices", + "views": 5, + "change": -0.5483870967741935 + }, + { + "page": "/projects/4d9d56e4-610d-4748-b57d-f8315e3f53a3/project-metadata", + "views": 5, + "change": 0.12903225806451601 + }, + { + "page": "/projects/54aaa409-dc28-48c5-be26-d368b4a5d5c6/export-to-terra", + "views": 5, + "change": null + }, + { + "page": "/projects/8a40ff19-e614-4c50-b23b-5c9e1d546bab/project-metadata", + "views": 5, + "change": null + }, + { + "page": "/projects/94e4ee09-9b4b-410a-84dc-a751ad36d0df/get-curl-command", + "views": 5, + "change": 0.5053763440860215 + }, + { + "page": "/projects/957261f7-2bd6-4358-a6ed-24ee080d5cfc/export-to-terra", + "views": 5, + "change": -0.4982078853046594 + }, + { + "page": "/projects/9a23ac2d-93dd-4bac-9bb8-040e6426db9d/get-curl-command", + "views": 5, + "change": -0.24731182795698925 + }, + { + "page": "/projects/a96b71c0-78a7-42d1-88ce-83c78925cfeb", + "views": 5, + "change": -0.3548387096774194 + }, + { + "page": "/projects/bc5512cc-9544-4aa4-8b75-8af445ee2257/get-curl-command", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/d3a4ceac-4d66-4984-9704-2570c0647a56", + "views": 5, + "change": -0.24731182795698925 + }, + { + "page": "/projects/da9d6f24-3bdf-4eaa-9e3f-f47ce2a65b36", + "views": 5, + "change": -0.5894428152492669 + }, + { + "page": "/projects/e090445c-6971-4212-bc5f-ae4ec3914102/get-curl-command", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/e579d0f4-18ef-4d42-90fa-4d2afb60a862/get-curl-command", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/e956e66a-ac8e-483a-963a-0f92c7e5abfb", + "views": 5, + "change": 0.5053763440860215 + }, + { + "page": "/projects/30dc3964-1135-4b56-b393-ce2dcbc6e379/project-metadata", + "views": 5, + "change": null + }, + { + "page": "/projects/4e6f083b-5b9a-4393-9890-2a83da8188f1/get-curl-command", + "views": 5, + "change": null + }, + { + "page": "/projects/4e6f083b-5b9a-4393-9890-2a83da8188f1/project-metadata", + "views": 5, + "change": 3.516129032258064 + }, + { + "page": "/projects/57916660-af5a-44d5-a7a9-2e84b65f8a68/project-matrices", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/71eb5f6d-cee0-4297-b503-b1125909b8c7/get-curl-command", + "views": 5, + "change": null + }, + { + "page": "/projects/7f9766ff-bb12-4279-b340-78d140bdd7ba/get-curl-command", + "views": 5, + "change": -0.652605459057072 + }, + { + "page": "/projects/ad3c5c48-ad28-43fd-9ec0-9b7a87e0ee6d/get-curl-command", + "views": 5, + "change": 0.5053763440860215 + }, + { + "page": "/projects/c211fd49-d980-4ba1-8c6a-c24254a3cb52/export-to-terra", + "views": 5, + "change": null + }, + { + "page": "/projects/c211fd49-d980-4ba1-8c6a-c24254a3cb52/get-curl-command", + "views": 5, + "change": 0.5053763440860215 + }, + { + "page": "/projects/c9e83418-a9f0-4ed1-ab4f-56d9513417bf/get-curl-command", + "views": 5, + "change": -0.24731182795698925 + }, + { + "page": "/projects/dc0b65b0-7713-46f0-a339-0b03ea786046/project-matrices", + "views": 5, + "change": null + }, + { + "page": "/projects/e255b1c6-1143-4fa6-83a8-528f15b41038/export-to-terra", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/f86f1ab4-1fbb-4510-ae35-3ffd752d4dfc/get-curl-command", + "views": 5, + "change": 0.5053763440860215 + }, + { + "page": "/projects/1fa8b11f-56fa-45a6-a777-6af70e17a6b3/project-metadata", + "views": 5, + "change": null + }, + { + "page": "/projects/2086eb05-10b9-432b-b7f0-169ccc49d270/project-matrices", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/51288166-777d-46e1-9ed2-523e0f7e888f", + "views": 5, + "change": null + }, + { + "page": "/projects/69324a96-a68a-4514-bbb4-f8f3ea4bd0f1/get-curl-command", + "views": 5, + "change": 3.516129032258064 + }, + { + "page": "/projects/73011a86-4755-48ac-9f70-a28903b4ad77/project-matrices", + "views": 5, + "change": null + }, + { + "page": "/projects/ae62bb31-55ca-4127-b0fb-b1771a604645/project-matrices", + "views": 5, + "change": null + }, + { + "page": "/projects/cbd3d276-9f24-4af9-8381-b11f6cdbdc4b/project-metadata", + "views": 5, + "change": 3.516129032258064 + }, + { + "page": "/projects/cd9d6360-ce38-4321-97df-f13c79e3cb84/project-metadata", + "views": 5, + "change": 3.516129032258064 + }, + { + "page": "/projects/dbcd4b1d-31bd-4eb5-94e1-50e8706fa192", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/projects/e1fda217-7ee1-4c1a-adfa-648279dafac6/get-curl-command", + "views": 5, + "change": 1.258064516129032 + }, + { + "page": "/contact", + "views": 4, + "change": -0.7220843672456576 + }, + { + "page": "/projects/032880e5-2b44-4bfb-8eef-25bb48e7453f/get-curl-command", + "views": 4, + "change": -0.3978494623655914 + }, + { + "page": "/projects/074a9f88-729a-455d-bca5-0ce80edf0cea", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/07518430-7031-4bdf-a3ce-1bf0917a1923", + "views": 4, + "change": -0.5483870967741935 + }, + { + "page": "/projects/16cd6791-2adb-4d0f-8222-0184dada6456/project-matrices", + "views": 4, + "change": -0.4838709677419355 + }, + { + "page": "/projects/2086eb05-10b9-432b-b7f0-169ccc49d270", + "views": 4, + "change": -0.6387096774193548 + }, + { + "page": "/projects/2c041c26-f75a-495f-ab36-a076f89d422a", + "views": 4, + "change": -0.6715542521994136 + }, + { + "page": "/projects/2ef3655a-973d-4d69-9b41-21fa4041eed7/project-metadata", + "views": 4, + "change": -0.7220843672456576 + }, + { + "page": "/projects/31887183-a72c-4308-9eac-c6140313f39c", + "views": 4, + "change": -0.6387096774193548 + }, + { + "page": "/projects/34c9a62c-a610-4e31-b343-8fb7be676f8c", + "views": 4, + "change": -0.4838709677419355 + }, + { + "page": "/projects/35d5b057-3daf-4ccd-8112-196194598893/export-to-terra", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/60ea42e1-af49-42f5-8164-d641fdb696bc", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/6137c3f4-261f-4192-b32e-4827a77ff793", + "views": 4, + "change": -0.4838709677419355 + }, + { + "page": "/projects/63b5b6c1-bbcd-487d-8c2e-0095150c1ecd", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/660fc8b5-8fb8-4050-8c57-e6313195bc81/get-curl-command", + "views": 4, + "change": -0.4838709677419355 + }, + { + "page": "/projects/6663070f-fd8b-41a9-a479-2d1e07afa201", + "views": 4, + "change": -0.5483870967741935 + }, + { + "page": "/projects/6f89a7f3-8d4a-4344-aa4f-eccfe7e91076", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/750b455a-e3cf-4721-9581-8609a6c9d561/get-curl-command", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/769a08d1-b8a4-4f1e-95f7-6071a9827555", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/8d566d35-d8d3-4975-a351-be5e25e9b2ea", + "views": 4, + "change": -0.7741935483870968 + }, + { + "page": "/projects/94e4ee09-9b4b-410a-84dc-a751ad36d0df/project-metadata", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/95f07e6e-6a73-4e1b-a880-c83996b3aa5c", + "views": 4, + "change": -0.5985663082437276 + }, + { + "page": "/projects/b486e0d9-dd8e-462a-b662-9a5bbad5edae/get-curl-command", + "views": 4, + "change": -0.4838709677419355 + }, + { + "page": "/projects/bfaedc29-fe84-4e72-a461-75dc8aabbd1b", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/c302fe54-d22d-451f-a130-e24df3d6afca/get-curl-command", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/c31fa434-c9ed-4263-a9b6-d9ffb9d44005/project-matrices", + "views": 4, + "change": -0.5985663082437276 + }, + { + "page": "/projects/c41dffbf-ad83-447c-a0e1-13e689d9b258/export-to-terra", + "views": 4, + "change": null + }, + { + "page": "/projects/c7a342eb-777e-4479-95ce-468f5bbcd893/export-to-terra", + "views": 4, + "change": -0.4838709677419355 + }, + { + "page": "/projects/d7b7beae-652b-4fc0-9bf2-bcda7c7115af", + "views": 4, + "change": -0.6715542521994136 + }, + { + "page": "/projects/dc0b65b0-7713-46f0-a339-0b03ea786046", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/e0c74c7a-20a4-4505-9cf1-38dcdd23011b", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/e5d45579-1f5b-48c3-b568-320d93e7ca72", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/e5ef5c5f-b856-47d1-b643-62c265528060/project-metadata", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/fc2a0b4e-1e4a-447b-a097-47b398402f37/project-matrices", + "views": 4, + "change": null + }, + { + "page": "/projects/fed95462-3420-44fb-8b9d-2efbffb35479", + "views": 4, + "change": -0.2774193548387096 + }, + { + "page": "/projects/065e6c13-ad6b-46a3-8075-c3137eb03068/export-to-terra", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/12f32054-8f18-4dae-8959-bfce7e3108e7/project-metadata", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/16dc40f9-2c13-42e3-8cdf-251e95bfc043", + "views": 4, + "change": -0.09677419354838712 + }, + { + "page": "/projects/16ed4ad8-7319-46b2-8859-6fe1c1d73a82", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/17cf943b-e247-454f-908b-da58665fcc56/project-metadata", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/1c4cbdd4-33e3-4ded-ab43-5958de817123/get-curl-command", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/1ebe8c34-454e-4c28-bd71-3a3e8b127be4/project-matrices", + "views": 4, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2433c1e4-5a12-46a5-b2d5-d3554a7694f2", + "views": 4, + "change": -0.3978494623655914 + }, + { + "page": "/projects/29ed827b-c539-4f4c-bb6b-ce8f9173dfb7/project-metadata", + "views": 4, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2a72a4e5-66b2-405a-bb7c-1e463e8febb0", + "views": 4, + "change": -0.3978494623655914 + }, + { + "page": "/projects/30dc3964-1135-4b56-b393-ce2dcbc6e379/get-curl-command", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/4d6f6c96-2a83-43d8-8fe1-0f53bffd4674/export-to-terra", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/4d9d56e4-610d-4748-b57d-f8315e3f53a3/project-matrices", + "views": 4, + "change": -0.5985663082437276 + }, + { + "page": "/projects/4ef86852-aca0-4a91-8522-9968e0e54dbe", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/54aaa409-dc28-48c5-be26-d368b4a5d5c6/project-matrices", + "views": 4, + "change": null + }, + { + "page": "/projects/660fc8b5-8fb8-4050-8c57-e6313195bc81/project-matrices", + "views": 4, + "change": -0.5985663082437276 + }, + { + "page": "/projects/6621c827-b57a-4268-bc80-df4049140193/project-metadata", + "views": 4, + "change": null + }, + { + "page": "/projects/6735ff73-1a04-422e-b500-730202e46f8a/project-metadata", + "views": 4, + "change": null + }, + { + "page": "/projects/73769e0a-5fcd-41f4-9083-41ae08bfa4c1/project-metadata", + "views": 4, + "change": -0.09677419354838712 + }, + { + "page": "/projects/74b6d569-3b11-42ef-b6b1-a0454522b4a0/project-matrices", + "views": 4, + "change": null + }, + { + "page": "/projects/74b6d569-3b11-42ef-b6b1-a0454522b4a0/project-metadata", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/75dbbce9-0cde-489c-88a7-93e8f92914a3/project-matrices", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/75dbbce9-0cde-489c-88a7-93e8f92914a3/project-metadata", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/7880637a-35a1-4047-b422-b5eac2a2a358", + "views": 4, + "change": -0.8279569892473118 + }, + { + "page": "/projects/79351583-b212-44ba-b473-731bdcddb407/get-curl-command", + "views": 4, + "change": null + }, + { + "page": "/projects/7b393e4d-65bc-4c03-b402-aae769299329/project-metadata", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/815c5ef5-0fb1-4eb7-9882-1d160362468e/project-metadata", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/85a9263b-0887-48ed-ab1a-ddfa773727b6/export-to-terra", + "views": 4, + "change": null + }, + { + "page": "/projects/87f519b4-8862-41f9-acff-75e823e0e430/project-metadata", + "views": 4, + "change": null + }, + { + "page": "/projects/8999b456-6fa6-438b-ab17-b62b1d8ec0c3/export-to-terra", + "views": 4, + "change": null + }, + { + "page": "/projects/8c4e43fb-f7f3-4446-8367-a3fe9e0b8fd7/get-curl-command", + "views": 4, + "change": -0.3978494623655914 + }, + { + "page": "/projects/8f1f653d-3ea1-4d8e-b4a7-b97dc852c2b1/project-matrices", + "views": 4, + "change": null + }, + { + "page": "/projects/8f630e0f-6bf9-4a04-9754-02533152a954", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/94023a08-611d-4f22-a8c9-90956e091b2e/export-to-terra", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/a27dd619-25ad-46a0-ae0c-5c4940a1139b", + "views": 4, + "change": -0.4838709677419355 + }, + { + "page": "/projects/b208466a-6fb0-4385-8cfb-8e03ff6b939e/get-curl-command", + "views": 4, + "change": -0.6387096774193548 + }, + { + "page": "/projects/cea413af-79b3-4f11-8b48-383fe9a65fbe/get-curl-command", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/d012d476-8f8c-4ff3-89d6-ebbe22c1b5c1/project-metadata", + "views": 4, + "change": null + }, + { + "page": "/projects/daa371e8-1ec3-43ef-924f-896d901eab6f", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/e1fda217-7ee1-4c1a-adfa-648279dafac6/project-metadata", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/ea9eec5a-4fc2-4c58-94d0-2fcb598732bc/get-curl-command", + "views": 4, + "change": null + }, + { + "page": "/projects/febdaddd-ad3c-4f4a-820f-ade15c48545a/project-matrices", + "views": 4, + "change": -0.2774193548387096 + }, + { + "page": "/projects/03c6fce7-789e-4e78-a27a-664d562bb738/project-metadata", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/04ad400c-58cb-40a5-bc2b-2279e13a910b/project-metadata", + "views": 4, + "change": -0.4838709677419355 + }, + { + "page": "/projects/10a845f7-0361-46fa-92a3-2a36483136b1/get-curl-command", + "views": 4, + "change": -0.3978494623655914 + }, + { + "page": "/projects/1cd1f41f-f81a-486b-a05b-66ec60f81dcf/project-metadata", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/2086eb05-10b9-432b-b7f0-169ccc49d270/get-curl-command", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/326b36bd-0975-475f-983b-56ddb8f73a4d/project-matrices", + "views": 4, + "change": -0.2774193548387096 + }, + { + "page": "/projects/38e34131-62fc-4323-b435-15113dfd6dcc/project-matrices", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/581de139-461f-4875-b408-56453a9082c7/project-matrices", + "views": 4, + "change": -0.5483870967741935 + }, + { + "page": "/projects/5f607e50-ba22-4598-b1e9-f3d9d7a35dcc/project-metadata", + "views": 4, + "change": null + }, + { + "page": "/projects/6735ff73-1a04-422e-b500-730202e46f8a/project-matrices", + "views": 4, + "change": null + }, + { + "page": "/projects/6e177195-0ac0-468b-99a2-87de96dc9db4/project-matrices", + "views": 4, + "change": -0.6387096774193548 + }, + { + "page": "/projects/77dedd59-1376-4887-9bca-dc42b56d5b7a/project-matrices", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/7ac8822c-4ef0-4194-adf0-74290611b1c6", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/85c0d6fa-f117-4d76-b01a-5d5e8f5f9188/project-metadata", + "views": 4, + "change": -0.09677419354838712 + }, + { + "page": "/projects/86fe0a0c-88b3-4a3e-94a1-6f9feadc401e/project-metadata", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/88ec040b-8705-4f77-8f41-f81e57632f7d/project-matrices", + "views": 4, + "change": null + }, + { + "page": "/projects/894ae6ac-5b48-41a8-a72f-315a9b60a62e/project-metadata", + "views": 4, + "change": -0.4838709677419355 + }, + { + "page": "/projects/9762d70c-9b27-4f57-8cbc-377b9b92ea9b/project-matrices", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/9762d70c-9b27-4f57-8cbc-377b9b92ea9b/project-metadata", + "views": 4, + "change": null + }, + { + "page": "/projects/9a23ac2d-93dd-4bac-9bb8-040e6426db9d/project-metadata", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/9b876d31-0739-4e96-9846-f76e6a427279/get-curl-command", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/9f17ed7d-9325-4723-a120-b00e48db20c0/get-curl-command", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/b3938158-4e8d-4fdb-9e13-9e94270dde16/project-matrices", + "views": 4, + "change": -0.6387096774193548 + }, + { + "page": "/projects/b486e0d9-dd8e-462a-b662-9a5bbad5edae/project-metadata", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/c0fecf0b-af86-41b8-ba82-d5fd81b7542a/get-curl-command", + "views": 4, + "change": -0.3978494623655914 + }, + { + "page": "/projects/c4e11369-78d4-4d29-ba8e-b67907c4c65c", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/cae461de-ecbd-482f-a5d4-11d607fc12ba/export-to-terra", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/ccd1f1ba-74ce-469b-9fc9-f6faea623358", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/da77bd06-43ae-4012-a774-e4d62797df51", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/da9d6f24-3bdf-4eaa-9e3f-f47ce2a65b36/get-curl-command", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/da9d6f24-3bdf-4eaa-9e3f-f47ce2a65b36/project-metadata", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/dbd836cf-bfc2-41f0-9834-41cc6c0b235a/project-metadata", + "views": 4, + "change": null + }, + { + "page": "/projects/dc0b65b0-7713-46f0-a339-0b03ea786046/get-curl-command", + "views": 4, + "change": null + }, + { + "page": "/projects/e526d91d-cf3a-44cb-80c5-fd7676b55a1d/get-curl-command", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/e526d91d-cf3a-44cb-80c5-fd7676b55a1d/project-matrices", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/e870ab56-3537-4b6d-a66f-534fbf8cc57f/get-curl-command", + "views": 4, + "change": -0.5483870967741935 + }, + { + "page": "/projects/f29b124a-8597-4862-ae98-ff3a0fd9033e/project-metadata", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/f8aa201c-4ff1-45a4-890e-840d63459ca2/project-metadata", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/10a845f7-0361-46fa-92a3-2a36483136b1/project-matrices", + "views": 4, + "change": -0.09677419354838712 + }, + { + "page": "/projects/1fa8b11f-56fa-45a6-a777-6af70e17a6b3/project-matrices", + "views": 4, + "change": null + }, + { + "page": "/projects/6735ff73-1a04-422e-b500-730202e46f8a/export-to-terra", + "views": 4, + "change": null + }, + { + "page": "/projects/69324a96-a68a-4514-bbb4-f8f3ea4bd0f1/project-matrices", + "views": 4, + "change": null + }, + { + "page": "/projects/cbd3d276-9f24-4af9-8381-b11f6cdbdc4b/project-matrices", + "views": 4, + "change": null + }, + { + "page": "/projects/e870ab56-3537-4b6d-a66f-534fbf8cc57f/project-metadata", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/ee166275-f63a-4864-8155-4df86c9de679/get-curl-command", + "views": 4, + "change": null + }, + { + "page": "/guides/consumer-vignettes/matrices/", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/index.html", + "views": 3, + "change": null + }, + { + "page": "/projects/005d611a-14d5-4fbf-846e-571a1f874f70/get-curl-command", + "views": 3, + "change": null + }, + { + "page": "/projects/05657a59-9f9d-4bb9-b77b-24be13aa5cea", + "views": 3, + "change": -0.5483870967741935 + }, + { + "page": "/projects/0d737cce-1c1c-493a-8e2e-b00143bccc12", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/1c4cbdd4-33e3-4ded-ab43-5958de817123/project-metadata", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/1eb69a39-b5b2-41ec-afae-5fe37f272756", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/2043c65a-1cf8-4828-a656-9e247d4e64f1", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/28dd1438-8f40-40d0-8e53-ee3301b66218", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/29b54165-34ee-4da5-b257-b4c1f7343656", + "views": 3, + "change": null + }, + { + "page": "/projects/29ed827b-c539-4f4c-bb6b-ce8f9173dfb7/get-curl-command", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/376a7f55-b876-4f60-9cf3-ed7bc83d5415/project-metadata", + "views": 3, + "change": -0.5483870967741935 + }, + { + "page": "/projects/3c27d2dd-b180-4b2b-bf05-e2e418393fd1/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/3d49e5e5-976f-44cb-b6b9-079016c31c56/export-to-terra", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/425c2759-db66-4c93-a358-a562c069b1f1/project-metadata", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/4f17edf6-e9f0-42af-a54a-f02fdca76ade", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/50154d1e-2308-44bf-9608-10c7afaa560b/project-metadata", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/51f02950-ee25-4f4b-8d07-59aa99bb3498/get-curl-command", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/57a2c2de-b0d4-465a-be53-a41e59e75fab/get-curl-command", + "views": 3, + "change": -0.6129032258064516 + }, + { + "page": "/projects/57a2c2de-b0d4-465a-be53-a41e59e75fab/project-metadata", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/65cbfea5-5c54-4255-a1d0-14549a86a5c1/project-metadata", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/6e522b93-9b70-4f0c-9990-b9cff721251b/get-curl-command", + "views": 3, + "change": null + }, + { + "page": "/projects/7027adc6-c9c9-46f3-84ee-9badc3a4f53b", + "views": 3, + "change": null + }, + { + "page": "/projects/73011a86-4755-48ac-9f70-a28903b4ad77/get-curl-command", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/73769e0a-5fcd-41f4-9083-41ae08bfa4c1/get-curl-command", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/74e2ef9d-7c9f-418c-b281-7fb38f3b1571", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/750b455a-e3cf-4721-9581-8609a6c9d561/project-metadata", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/783c9952-a4ae-4106-a6ce-56f20ce27f88", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/78b2406d-bff2-46fc-8b61-20690e602227", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/7bc1f14b-5e64-4c7f-86b0-23596b97e2aa/project-matrices", + "views": 3, + "change": null + }, + { + "page": "/projects/7be05025-9972-493a-856f-3342a8d1b183/get-curl-command", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/7c75f07c-608d-4c4a-a1b7-b13d11c0ad31/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/7dcffc32-7c82-4396-9a4f-88b5579bfe8a/get-curl-command", + "views": 3, + "change": null + }, + { + "page": "/projects/7f980afc-4e01-4b9c-a9a1-f50e17fce8c2/project-metadata", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/815c5ef5-0fb1-4eb7-9882-1d160362468e/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/8185730f-4113-40d3-9cc3-929271784c2b/get-curl-command", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/8185730f-4113-40d3-9cc3-929271784c2b/project-metadata", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/849ed38c-5917-43c4-a8f9-0782241cf10c", + "views": 3, + "change": -0.6129032258064516 + }, + { + "page": "/projects/84d1697f-d4af-42c2-9a50-37fb5842c586", + "views": 3, + "change": -0.7290322580645161 + }, + { + "page": "/projects/87d52a86-bdc7-440c-b84d-170f7dc346d9/get-curl-command", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/8b954fb2-bccb-44c5-84e3-9f91e9189c40", + "views": 3, + "change": -0.6989247311827957 + }, + { + "page": "/projects/92afaa56-d501-481e-a027-dddd72212ba8", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/94e4ee09-9b4b-410a-84dc-a751ad36d0df/project-matrices", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/9b876d31-0739-4e96-9846-f76e6a427279/project-metadata", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/a004b150-1c36-4af6-9bbd-070c06dbc17d/export-to-terra", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/a4f154f8-5cc9-40b5-b8d7-af90afce8a8f/project-metadata", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/a9301beb-e9fa-42fe-b75c-84e8a460c733/export-to-terra", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/a9ad7346-54b4-43a9-9055-7512aa532ba0", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/abe1a013-af7a-45ed-8c26-f3793c24a1f4/project-matrices", + "views": 3, + "change": -0.8870967741935484 + }, + { + "page": "/projects/ae71be1d-ddd8-4feb-9bed-24c3ddb6e1ad/get-curl-command", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c0518445-3b3b-49c6-b8fc-c41daa4eacba/project-matrices", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/c0518445-3b3b-49c6-b8fc-c41daa4eacba/project-metadata", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/c0d82ef2-1504-4ef0-9e5e-d8a13e45fdec", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/c1a9a93d-d9de-4e65-9619-a9cec1052eaa/project-metadata", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/c4077b3c-5c98-4d26-a614-246d12c2e5d7/project-matrices", + "views": 3, + "change": -0.7741935483870968 + }, + { + "page": "/projects/c9e83418-a9f0-4ed1-ab4f-56d9513417bf/project-matrices", + "views": 3, + "change": null + }, + { + "page": "/projects/cae461de-ecbd-482f-a5d4-11d607fc12ba/project-matrices", + "views": 3, + "change": -0.5483870967741935 + }, + { + "page": "/projects/cc95ff89-2e68-4a08- a234-480eca21ce79", + "views": 3, + "change": null + }, + { + "page": "/projects/cc95ff892e68-4a08-a234-480eca21ce79", + "views": 3, + "change": null + }, + { + "page": "/projects/cd61771b-661a-4e19-b269-6e5d95350de6/project-metadata", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/cdabcf0b-7602-4abf-9afb-3b410e545703/export-to-terra", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/d3446f0c-30f3-4a12-b7c3-6af877c7bb2d", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/d3ac7c1b-5302-4804-b611-dad9f89c049d", + "views": 3, + "change": -0.7290322580645161 + }, + { + "page": "/projects/d71c76d3-3670-4774-a9cf-034249d37c60/project-metadata", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/daf9d982-7ce6-43f6-ab51-272577290606/project-metadata", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/e090445c-6971-4212-bc5f-ae4ec3914102/project-matrices", + "views": 3, + "change": null + }, + { + "page": "/projects/e4b18cd2-8f15-490d-b9f1-d118aa067dc3/get-curl-command", + "views": 3, + "change": -0.5483870967741935 + }, + { + "page": "/projects/e4b18cd2-8f15-490d-b9f1-d118aa067dc3/project-matrices", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/e5ef5c5f-b856-47d1-b643-62c265528060/get-curl-command", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/e77fed30-959d-4fad-bc15-a0a5a85c21d2", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/e993adcd-d4ba-4f88-9a05-d1c05bdf0c45/get-curl-command", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/f598aee0-d269-4036-90e9-d6d5b1c84429/project-metadata", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/f6133d2a-9f3d-4ef9-9c19-c23d6c7e6cc0/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/f86f1ab4-1fbb-4510-ae35-3ffd752d4dfc/project-metadata", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/fde199d2-a841-4ed1-aa65-b9e0af8969b1/export-to-terra", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/contribute/", + "views": 3, + "change": null + }, + { + "page": "/hca-bio-networks/eye/atlases/retina-v1-0)", + "views": 3, + "change": null + }, + { + "page": "/hca-bio-networks/reproduction/datasets", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/027c51c6-0719-469f-a7f5-640fe57cbece/get-curl-command", + "views": 3, + "change": null + }, + { + "page": "/projects/04e4292c-f62f-4098-ae9b-fd69ae002a90/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/07073c12-8006-4710-a00b-23abdb814904/get-curl-command", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/087efc3c-2601-4de6-bbe9-0114593050d1/project-matrices", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/0c09fade-e079-4fde-8e60-6725b8c1d84b/project-matrices", + "views": 3, + "change": null + }, + { + "page": "/projects/17cf943b-e247-454f-908b-da58665fcc56/project-matrices", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/18e58437-76b7-4021-8ede-3f0b443fa915/project-metadata", + "views": 3, + "change": -0.6989247311827957 + }, + { + "page": "/projects/1c4cbdd4-33e3-4ded-ab43-5958de817123/project-matrices", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/1cd1f41f-f81a-486b-a05b-66ec60f81dcf/get-curl-command", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/2079bb2e-676e-4bbf-8c68-f9c6459edcbb/project-matrices", + "views": 3, + "change": null + }, + { + "page": "/projects/21ea8ddb-525f-4f1f-a820-31f0360399a2/get-curl-command", + "views": 3, + "change": null + }, + { + "page": "/projects/23e7e221-f09b-4688-9d3e-957790b40103", + "views": 3, + "change": null + }, + { + "page": "/projects/2973a42c-f810-4812-9a23-5bbc9644588d/get-curl-command", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2af52a13-65cb-4973-b513-39be38f2df3f/project-matrices", + "views": 3, + "change": null + }, + { + "page": "/projects/2caedc30-c816-4b99-a237-b9f3b458c8e5/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/2fe3c60b-ac1a-4c61-9b59-f6556c0fce63/export-to-terra", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/326b36bd-0975-475f-983b-56ddb8f73a4d/project-metadata", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/4037007b-0eff-4e6d-b7bd-8dd8eec80143/get-curl-command", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/421bc6cd-bbb4-4398-ac60-a32ea94f02ae/project-matrices", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/50db6ba4-3986-4d55-86b7-e1a5a888a17b/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/57a2c2de-b0d4-465a-be53-a41e59e75fab/export-to-terra", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/58028aa8-0ed2-49ca-b60f-15e2ed5989d5/get-curl-command", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/58028aa8-0ed2-49ca-b60f-15e2ed5989d5/project-matrices", + "views": 3, + "change": -0.6129032258064516 + }, + { + "page": "/projects/5b5f05b7-2482-468d-b76d-8f68c04a7a47/get-curl-command", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/65cbfea5-5c54-4255-a1d0-14549a86a5c1/get-curl-command", + "views": 3, + "change": null + }, + { + "page": "/projects/6874b7eb-3445-47ec-8773-75141430e169/get-curl-command", + "views": 3, + "change": null + }, + { + "page": "/projects/77780d56-03c0-481f-aade-2038490cef9f/project-matrices", + "views": 3, + "change": -0.7536656891495601 + }, + { + "page": "/projects/79b13a2a-9ca1-42a4-97bd-70208a11bea6/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/7adede6a-0ab7-45e6-9b67-ffe7466bec1f/project-matrices", + "views": 3, + "change": -0.6129032258064516 + }, + { + "page": "/projects/7bc1f14b-5e64-4c7f-86b0-23596b97e2aa/get-curl-command", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/7c599029-7a3c-4b5c-8e79-e72c9a9a65fe/get-curl-command", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/88ec040b-8705-4f77-8f41-f81e57632f7d/get-curl-command", + "views": 3, + "change": null + }, + { + "page": "/projects/88ec040b-8705-4f77-8f41-f81e57632f7d/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/894ae6ac-5b48-41a8-a72f-315a9b60a62e/get-curl-command", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/894ae6ac-5b48-41a8-a72f-315a9b60a62e/project-matrices", + "views": 3, + "change": -0.6129032258064516 + }, + { + "page": "/projects/8c3c290d-dfff-4553-8868-54ce45f4ba7f/get-curl-command", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/8dcbd84a-6243-4501-a684-0dcd084bb536", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/90bd6933-40c0-48d4-8d76-778c103bf545/project-matrices", + "views": 3, + "change": null + }, + { + "page": "/projects/9746f4e0-d3b2-4543-89b3-10288162851b/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/9a23ac2d-93dd-4bac-9bb8-040e6426db9d/project-matrices", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/9b876d31-0739-4e96-9846-f76e6a427279/project-matrices", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/9f7aa401-70e3-4695-951a-30541a1434eb/project-metadata", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/a29952d9-925e-40f4-8a1c-274f118f1f51", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/ad3c5c48-ad28-43fd-9ec0-9b7a87e0ee6d/project-metadata", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/b10cd314-3e71-4437-9a16-77028d243e81/export-to-terra", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/c412be53-cf95-47c7-980c-c0a0caa2d3a0/export-to-terra", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/c412be53-cf95-47c7-980c-c0a0caa2d3a0/get-curl-command", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c41dffbf-ad83-447c-a0e1-13e689d9b258/project-matrices", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/cbd3d276-9f24-4af9-8381-b11f6cdbdc4b/get-curl-command", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/d012d476-8f8c-4ff3-89d6-ebbe22c1b5c1/get-curl-command", + "views": 3, + "change": null + }, + { + "page": "/projects/daef3fda-2620-45ae-a3f7-1613814a35bf/export-to-terra", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/df88f39f-01a8-4b5b-92f4-3177d6c0f242", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/e090445c-6971-4212-bc5f-ae4ec3914102/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/e579d0f4-18ef-4d42-90fa-4d2afb60a862/project-matrices", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/e88714c2-2e78-49da-8146-5a60b50628b4/export-to-terra", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/ee166275-f63a-4864-8155-4df86c9de679/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/f2fe82f0-4454-4d84-b416-a885f3121e59/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/f8aa201c-4ff1-45a4-890e-840d63459ca2/get-curl-command", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/fa3f460f-4fb9-4ced-b548-8ba6a8ecae3f/export-to-terra", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/fae72d89-4ac4-4aab-9b93-574775e168d4", + "views": 3, + "change": -0.09677419354838712 + }, + { + "page": "/projects/027c51c6-0719-469f-a7f5-640fe57cbece/project-matrices", + "views": 3, + "change": null + }, + { + "page": "/projects/027c51c6-0719-469f-a7f5-640fe57cbece/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/07073c12-8006-4710-a00b-23abdb814904/project-matrices", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/0c09fade-e079-4fde-8e60-6725b8c1d84b/get-curl-command", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/10a845f7-0361-46fa-92a3-2a36483136b1/project-metadata", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/16e99159-78bc-44aa-b479-55a5e903bf50/export-to-terra", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/18e58437-76b7-4021-8ede-3f0b443fa915/project-matrices", + "views": 3, + "change": -0.5483870967741935 + }, + { + "page": "/projects/1fa8b11f-56fa-45a6-a777-6af70e17a6b3/get-curl-command", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/20f37aaf-caa1-40e6-9123-be6ce8feb2d6/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/279f1766-3319-4e3c-9f99-6fb59ba9b3e5/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/38e34131-62fc-4323-b435-15113dfd6dcc/export-to-terra", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/414acced-eba0-440f-b721-befbc5642bef/project-matrices", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/414acced-eba0-440f-b721-befbc5642bef/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/42d4f8d4-5422-4b78-adae-e7c3c2ef511c/project-matrices", + "views": 3, + "change": null + }, + { + "page": "/projects/42d4f8d4-5422-4b78-adae-e7c3c2ef511c/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/4c73d1e4-bad2-4a22-a0ba-55abbdbdcc3d/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/69324a96-a68a-4514-bbb4-f8f3ea4bd0f1/project-metadata", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/72ff4818-5692-4bbc-8886-e47763531023/project-matrices", + "views": 3, + "change": null + }, + { + "page": "/projects/7adede6a-0ab7-45e6-9b67-ffe7466bec1f/get-curl-command", + "views": 3, + "change": -0.7290322580645161 + }, + { + "page": "/projects/7c599029-7a3c-4b5c-8e79-e72c9a9a65fe/project-metadata", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/92892ab2-1334-4b1c-9761-14f5a73548ea/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/946c5add-47d1-402a-97bb-a5af97e8bce7/get-curl-command", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/990d251f-6dab-4a98-a2b6-6cfe7e4708b9/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/c4e11369-78d4-4d29-ba8e-b67907c4c65c/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/cbd3d276-9f24-4af9-8381-b11f6cdbdc4b/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/dbd836cf-bfc2-41f0-9834-41cc6c0b235a/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/dbd836cf-bfc2-41f0-9834-41cc6c0b235a/get-curl-command", + "views": 3, + "change": 0.35483870967741926 + }, + { + "page": "/projects/dbd836cf-bfc2-41f0-9834-41cc6c0b235a/project-matrices", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/e870ab56-3537-4b6d-a66f-534fbf8cc57f/export-to-terra", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/e870ab56-3537-4b6d-a66f-534fbf8cc57f/project-matrices", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/eaefa1b6-dae1-4414-953b-17b0427d061e", + "views": 3, + "change": -0.32258064516129037 + }, + { + "page": "/projects/ee166275-f63a-4864-8155-4df86c9de679/project-matrices", + "views": 3, + "change": null + }, + { + "page": "/projects/ee166275-f63a-4864-8155-4df86c9de679/project-metadata", + "views": 3, + "change": null + }, + { + "page": "/projects/f29b124a-8597-4862-ae98-ff3a0fd9033e/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/projects/f86f1ab4-1fbb-4510-ae35-3ffd752d4dfc/export-to-terra", + "views": 3, + "change": null + }, + { + "page": "/](https://data.humancellatlas.org", + "views": 2, + "change": null + }, + { + "page": "/analyze/portals/asap", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/hca-bio-", + "views": 2, + "change": null + }, + { + "page": "/hca-bio-networks/", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/hca-bio-networks/eye/datasets", + "views": 2, + "change": -0.8795698924731183 + }, + { + "page": "/hca-bio-networks/nervous-system/datasets", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/hca-bio-networks/oral-and-craniofacial/datasets", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/metadata/dictionary/ontology/contributor_role_ontology", + "views": 2, + "change": -0.6387096774193548 + }, + { + "page": "/metadata/dictionary/ontology/process_type_ontology", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/031980e6-9f2b-433a-8f6e-081bd9aad0a3", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/0562d2ae-0b8a-459e-bbc0-6357108e5da9", + "views": 2, + "change": -0.7741935483870968 + }, + { + "page": "/projects/0777b9ef-91f3-468b-9dea-db477437aa1a/project-matrices", + "views": 2, + "change": -0.7419354838709677 + }, + { + "page": "/projects/0792db34-8047-4e62-802c-9177c9cd8e28/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/0792db34-8047-4e62-802c-9177c9cd8e28/project-metadata", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/087efc3c-2601-4de6-bbe9-0114593050d1/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/0911cc04-06d6-4ffc-8318-b90b0039e8ad/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/111d272b-c25a-49ac-9b25-e062b70d66e0", + "views": 2, + "change": -0.6989247311827957 + }, + { + "page": "/projects/17cf943b-e247-454f-908b-da58665fcc56/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/1c4cbdd4-33e3-4ded-ab43-5958de817123/export-to-terra", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/1c6a960d-52ac-44ea-b728-a59c7ab9dc8e", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/1ce3b3dc-02f2-44a8-96da-d6d107b27a76", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/1dddae6e-3753-48af-b20e-fa22abad125d/get-curl-command", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/1fac187b-1c3f-41c4-b6b6-6a9a8c0489d1/export-to-terra", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/20f37aaf-caa1-40e6-9123-be6ce8feb2d6/get-curl-command", + "views": 2, + "change": null + }, + { + "page": "/projects/2253ae59-4cc5-4bd2-b44e-ecb6d3fd7646", + "views": 2, + "change": -0.7419354838709677 + }, + { + "page": "/projects/24d0dbbc-54eb-4904-8141-934d26f1c936/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/272b7602-66cd-4b02-a86b-2b7c9c51a9ea/project-matrices", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2af52a13-65cb-4973-b513-39be38f2df3f/export-to-terra", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/2b38025d-a5ea-4c0f-b22e-367824bcaf4c/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/2b81ecc4-6ee0-438f-8c5b-c10b2464069e/get-curl-command", + "views": 2, + "change": null + }, + { + "page": "/projects/2b81ecc4-6ee0-438f-8c5b-c10b2464069e/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/2c041c26-f75a-495f-ab36-a076f89d422a/get-curl-command", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2e40df1e-d3c2-48b4-8a17-c46e34d7be59/project-matrices", + "views": 2, + "change": -0.8494623655913979 + }, + { + "page": "/projects/2eb4f5f8-42a5-4368-aa2d-337bacb96197", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/3089d311-f9ed-44dd-bb10-397059bad4dc/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/30dc3964-1135-4b56-b393-ce2dcbc6e379/export-to-terra", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/30dc3964-1135-4b56-b393-ce2dcbc6e379/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/3373e59c-525f-4a83-8c9c-d8b280454697/project-matrices", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/3373e59c-525f-4a83-8c9c-d8b280454697/project-metadata", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/34ec845b-cd7a-4c43-99e4-d2932d5d85bb", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/376a7f55-b876-4f60-9cf3-ed7bc83d5415/project-matrices", + "views": 2, + "change": -0.6989247311827957 + }, + { + "page": "/projects/3c9d586e-bd26-4b46-8690-3faaa18ccf38", + "views": 2, + "change": null + }, + { + "page": "/projects/3ce9ae94-c469-419a-9637-5d138a4e642f/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/3d49e5e5-976f-44cb-b6b9-079016c31c56/project-metadata", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/40272c3b-4697-4bd4-ba3f-82fa96b9bf71", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/4037007b-0eff-4e6d-b7bd-8dd8eec80143/project-matrices", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/453d7ee2-319f-496c-9862-99d397870b63/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/457d0bfe-79e4-43f1-be5d-83bf080d809e/project-matrices", + "views": 2, + "change": -0.8357771260997068 + }, + { + "page": "/projects/48f60534-ba4e-45bc-aa5b-6d3a6c45962e/project-matrices", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/4af795f7-3e1d-4341-b867-4ac0982b9efd/project-matrices", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/4d9d56e4-610d-4748-b57d-f8315e3f53a3/export-to-terra", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/4e6f083b-5b9a-4393-9890-2a83da8188f1/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/4f4f0193-ede8-4a82-8cb0-7a0a22f06e63/project-matrices", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/5116c081-8be7-49c5-8ce0-73b887328aa9/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/51f02950-ee25-4f4b-8d07-59aa99bb3498/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/520afa10-f9d2-4e93-ab7a-26c4c863ce18/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/520afa10-f9d2-4e93-ab7a-26c4c863ce18/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/52b29aa4-c8d6-42b4-807a-b35be94469ca/get-curl-command", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/566d00b0-e1f8-4b92-9cbd-57de9fad0050/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/591af954-cdcd-4839-96d3-a0d1b1e885ac/get-curl-command", + "views": 2, + "change": -0.7741935483870968 + }, + { + "page": "/projects/5a54c617-0eed-486e-8c1a-8a8041fc1729/get-curl-command", + "views": 2, + "change": null + }, + { + "page": "/projects/5a54c617-0eed-486e-8c1a-8a8041fc1729/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/5b5f05b7-2482-468d-b76d-8f68c04a7a47/project-matrices", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/5ee710d7-e2d5-4fe2-818d-15f5e31dae32/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/5f1a1aee-6c48-4dd4-a2c4-eb4ca6aadf74", + "views": 2, + "change": -0.7741935483870968 + }, + { + "page": "/projects/6072616c-8794-4b20-8f52-fb15992ea5a4", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/6601b3d4-ed5a-4e1f-b54a-e36adf45aa28/project-matrices", + "views": 2, + "change": -0.7419354838709677 + }, + { + "page": "/projects/660fc8b5-8fb8-4050-8c57-e6313195bc81/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/6621c827-b57a-4268-bc80-df4049140193/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/68df3629-d2d2-4eed-b0ab-a10e0f019b88/get-curl-command", + "views": 2, + "change": -0.6989247311827957 + }, + { + "page": "/projects/6e177195-0ac0-468b-99a2-87de96dc9db4/project-metadata", + "views": 2, + "change": -0.7419354838709677 + }, + { + "page": "/projects/71eb5f6d-cee0-4297-b503-b1125909b8c7/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/73769e0a-5fcd-41f4-9083-41ae08bfa4c1/project-matrices", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/74b6d569-3b11-42ef-b6b1-a0454522b4a0/get-curl-command", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/750b455a-e3cf-4721-9581-8609a6c9d561/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/750b455a-e3cf-4721-9581-8609a6c9d561/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/7adede6a-0ab7-45e6-9b67-ffe7466bec1f/project-metadata", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/7b393e4d-65bc-4c03-b402-aae769299329/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/7b947aa2-43a7-4082-afff-222a3e3a4635/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/7bc1f14b-5e64-4c7f-86b0-23596b97e2aa/project-metadata", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/7dcffc32-7c82-4396-9a4f-88b5579bfe8a/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/7f9766ff-bb12-4279-b340-78d140bdd7ba/project-metadata", + "views": 2, + "change": -0.8494623655913979 + }, + { + "page": "/projects/7f980afc-4e01-4b9c-a9a1-f50e17fce8c2/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/7f980afc-4e01-4b9c-a9a1-f50e17fce8c2/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/7fc0a756-9b06-4e63-a780-6c9fc3f9d76d", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/84d1697f-d4af-42c2-9a50-37fb5842c586/get-curl-command", + "views": 2, + "change": -0.6387096774193548 + }, + { + "page": "/projects/84d1697f-d4af-42c2-9a50-37fb5842c586/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/84d1697f-d4af-42c2-9a50-37fb5842c586/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/86fe0a0c-88b3-4a3e-94a1-6f9feadc401e/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/8787c238-89ef-4636-a57d-3167e8b54a80", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/894ae6ac-5b48-41a8-a72f-315a9b60a62e/export-to-terra", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/8999b456-6fa6-438b-ab17-b62b1d8ec0c3", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/8a40ff19-e614-4c50-b23b-5c9e1d546bab/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/8bd2e5f6-9453-4b9b-9c56-59e3a40dc87e", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/8c3c290d-dfff-4553-8868-54ce45f4ba7f/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/8fd1609b-cd2d-4b4d-bb96-49ae6b8ade2f/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/925f9a4c-cac0-444a-ad2c-612656ab3a85/get-curl-command", + "views": 2, + "change": -0.7741935483870968 + }, + { + "page": "/projects/9483c664-d546-4b30-9ba3-efbdbf9290b4", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/95d058bc-9cec-4c88-8d2c-05b4a45bf24f/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/9762d70c-9b27-4f57-8cbc-377b9b92ea9b/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/9762d70c-9b27-4f57-8cbc-377b9b92ea9b/get-curl-command", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/984ce0a2-682d-47a3-b80e-1354dfe51ca3", + "views": 2, + "change": null + }, + { + "page": "/projects/9e3370a0-144a-49a9-9e92-6f6a9290125a", + "views": 2, + "change": null + }, + { + "page": "/projects/9f17ed7d-9325-4723-a120-b00e48db20c0/project-matrices", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/a4f154f8-5cc9-40b5-b8d7-af90afce8a8f/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/a62dae2e-cd69-4d5c-b5f8-4f7e8abdbafa/project-matrices", + "views": 2, + "change": -0.6989247311827957 + }, + { + "page": "/projects/a815c84b-8999-433f-958e-422c0720e00d/export-to-terra", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/a815c84b-8999-433f-958e-422c0720e00d/project-matrices", + "views": 2, + "change": -0.6989247311827957 + }, + { + "page": "/projects/a9ad7346-54b4-43a9-9055-7512aa532ba0/get-curl-command", + "views": 2, + "change": null + }, + { + "page": "/projects/ac289b77-fb12-4a6b-ad43-c0721c698e70", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/ae71be1d-ddd8-4feb-9bed-24c3ddb6e1ad/project-matrices", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/ae71be1d-ddd8-4feb-9bed-24c3ddb6e1ad/project-metadata", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/aff9c3cd-6b84-4fc2-abf2-b9c0b3038277", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/b176d756-62d8-4933-83a4-8b026380262f/get-curl-command", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/b32a9915-c81b-4cbc-af53-3a66b5da3c9a/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/b3938158-4e8d-4fdb-9e13-9e94270dde16/export-to-terra", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/b4a7d12f-6c2f-40a3-9e35-9756997857e3", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/b733dc1b-1d55-45e3-8036-7eab0821742c/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/b91c623b-1945-4727-b167-0a93027b0d3f/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/bcdf233f-9246-4c0c-9843-0514120b7e3a/export-to-terra", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/bd7104c9-a950-490e-9472-7d41c6b11c62", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/be010abc-fb68-4581-b61f-7dd7c3d7b044", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c0fecf0b-af86-41b8-ba82-d5fd81b7542a/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/c1a9a93d-d9de-4e65-9619-a9cec1052eaa/get-curl-command", + "views": 2, + "change": -0.7741935483870968 + }, + { + "page": "/projects/c281ab63-7b7d-4bdf-b761-9b1baaa18f82/export-to-terra", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/c31fa434-c9ed-4263-a9b6-d9ffb9d44005/export-to-terra", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/c3dd819d-abab-4957-b209-88f1e0900368", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/c715cd2f-dc7c-44a6-9cd5-b6a6d9f075ae/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/c8e6c5d9-fcde-4845-bead-ff96999e3051/project-matrices", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/cbd2911f-252b-4428-abde-69e270aefdfc/project-matrices", + "views": 2, + "change": -0.6387096774193548 + }, + { + "page": "/projects/cc95ff89-2e68-4a08-", + "views": 2, + "change": null + }, + { + "page": "/projects/ccc3b786-1da0-427f-a45f-76306d6143b6", + "views": 2, + "change": null + }, + { + "page": "/projects/cd9d6360-ce38-4321-97df-f13c79e3cb84/export-to-terra", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/cea413af-79b3-4f11-8b48-383fe9a65fbe/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/d012d476-8f8c-4ff3-89d6-ebbe22c1b5c1/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/d138a114-7df5-4f7d-9ff1-f79dfd2d428f", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/d6225aee-8f0e-4b20-a20c-682509a9ea14", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/d71c76d3-3670-4774-a9cf-034249d37c60/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/dc0b65b0-7713-46f0-a339-0b03ea786046/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/df88f39f-01a8-4b5b-92f4-3177d6c0f242/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/df8eb7ce-3707-46af-b823-e081a562e954/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/df8eb7ce-3707-46af-b823-e081a562e954/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/e0009214-c0a0-4a7b-96e2-d6a83e966ce0/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/e4b18cd2-8f15-490d-b9f1-d118aa067dc3/project-metadata", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/e57dc176-ab98-446b-90c2-89e0842152fd", + "views": 2, + "change": null + }, + { + "page": "/projects/e5d45579-1f5b-48c3-b568-320d93e7ca72/get-curl-command", + "views": 2, + "change": null + }, + { + "page": "/projects/e5ef5c5f-b856-47d1-b643-62c265528060/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/e993adcd-d4ba-4f88-9a05-d1c05bdf0c45/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/ea9eec5a-4fc2-4c58-94d0-2fcb598732bc/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/ede2e0b4-6652-464f-abbc-0b2d964a25a0", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/efea6426-510a-4b60-9a19-277e52bfa815/export-to-terra", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/f2fe82f0-4454-4d84-b416-a885f3121e59/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/f598aee0-d269-4036-90e9-d6d5b1c84429/project-matrices", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/f6133d2a-9f3d-4ef9-9c19-c23d6c7e6cc0/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/f6133d2a-9f3d-4ef9-9c19-c23d6c7e6cc0/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/f8aa201c-4ff1-45a4-890e-840d63459ca2/export-to-terra", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/fc2a0b4e-1e4a-447b-a097-47b398402f37/export-to-terra", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/lung", + "views": 2, + "change": null + }, + { + "page": "/projects/005d611a-14d5-4fbf-846e-571a1f874f70/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/0777b9ef-91f3-468b-9dea-db477437aa1a/project-metadata", + "views": 2, + "change": -0.7419354838709677 + }, + { + "page": "/projects/08b794a0-519c-4516-b184-c583746254c5/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/08b794a0-519c-4516-b184-c583746254c5/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/08b794a0-519c-4516-b184-c583746254c5/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/0fd8f918-62d6-4b8b-ac35-4c53dd601f71", + "views": 2, + "change": -0.8357771260997068 + }, + { + "page": "/projects/116965f3-f094-4769-9d28-ae675c1b569c/project-metadata", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/16241d82-...", + "views": 2, + "change": null + }, + { + "page": "/projects/16e99159-78bc-44aa-b479-55a5e903bf50/project-matrices", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/18e58437-76b7-4021-8ede-3f0b443fa915/export-to-terra", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2086eb05-10b9-432b-b7f0-169ccc49d270/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/20f37aaf-caa1-40e6-9123-be6ce8feb2d6/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/248fcf03-16c6-4a41-b6cc-aad4d894ca42", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/248fcf03-16c6-4a41-b6cc-aad4d894ca42/get-curl-command", + "views": 2, + "change": null + }, + { + "page": "/projects/24d0dbbc-54eb-4904-8141-934d26f1c936/get-curl-command", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/272b7602-66cd-4b02-a86b-2b7c9c51a9ea/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/279f1766-3319-4e3c-9f99-6fb59ba9b3e5/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/28371655-60ba-449e-a303-5859b29ead65/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/2973a42c-f810-4812-9a23-5bbc9644588d/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/2973a42c-f810-4812-9a23-5bbc9644588d/project-metadata", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2ad191cd-bd7a-409b-9bd1-e72b5e4cce81/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/3089d311-f9ed-44dd-bb10-397059bad4dc/project-metadata", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/31887183-a72c-4308-9eac-c6140313f39c/get-curl-command", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/3373e59c-525f-4a83-8c9c-d8b280454697/get-curl-command", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/34da2c5f-8011-48af-a7fd-ad2f56ec10f4/project-metadata", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/38e34131-62fc-4323-b435-15113dfd6dcc/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/3bb95c61-630d-4970-ae40-8a951bd11cc1/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/3c27d2dd-b180-4b2b-bf05-e2e418393fd1/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/3cdaf942-f8ad-42e8-a77b-4efedb9ea7b6/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/3cdaf942-f8ad-42e8-a77b-4efedb9ea7b6/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/3e329187-a9c4-48ec-90e3-cc45f7c2311c", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/4037007b-0eff-4e6d-b7bd-8dd8eec80143/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/40ca2a03-ec0f-471f-a834-948199495fe7", + "views": 2, + "change": -0.7419354838709677 + }, + { + "page": "/projects/414acced-eba0-440f-b721-befbc5642bef/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/48b198ef-3d59-4e57-900f-df54c2435669", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/4c73d1e4-bad2-4a22-a0ba-55abbdbdcc3d/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/53c53cd4-8127-4e12-bc7f-8fe1610a715c/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/53c53cd4-8127-4e12-bc7f-8fe1610a715c/project-metadata", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/591af954-cdcd-4839-96d3-a0d1b1e885ac/project-matrices", + "views": 2, + "change": -0.7419354838709677 + }, + { + "page": "/projects/5b5f05b7-2482-468d-b76d-8f68c04a7a47/project-metadata", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/5bd01deb-01ee-4611-8efd-cf0ec5f56ac4/get-curl-command", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/5f1a1aee-6c48-4dd4-a2c4-eb4ca6aadf74/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/5f607e50-ba22-4598-b1e9-f3d9d7a35dcc/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/65d7a168-4d62-4bc0-8324-4e742aa62de6/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/65d7a168-4d62-4bc0-8324-4e742aa62de6/project-matrices", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/66d7d92a-d6c5-492c-815b-f81c7c93c984/get-curl-command", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/6874b7eb-3445-47ec-8773-75141430e169/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/74e2ef9d-7c9f-418c-b281-7fb38f3b1571/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/77dedd59-1376-4887-9bca-dc42b56d5b7a/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/77dedd59-1376-4887-9bca-dc42b56d5b7a/project-metadata", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/78d7805b-fdc8-472b-8058-d92cf886f7a4/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/78d7805b-fdc8-472b-8058-d92cf886f7a4/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/79b13a2a-9ca1-42a4-97bd-70208a11bea6/get-curl-command", + "views": 2, + "change": null + }, + { + "page": "/projects/7b947aa2-43a7-4082-afff-222a3e3a4635/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/842605c7-375a-47c5-9e2c-a71c2c00fcad/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/86fd2521-c501-4e41-841c-06d79277bb7c", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/87f519b4-8862-41f9-acff-75e823e0e430/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/888f1766-4c84-43bb-8717-b5f9d2046097/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/8b9cb6ae-6a43-4e47-b9fb-3df7aeec941f/get-curl-command", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/8dadf21e-0a44-4fa3-aafc-7633b2a9eaa4/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/8f630e0f-6bf9-4a04-9754-02533152a954/get-curl-command", + "views": 2, + "change": null + }, + { + "page": "/projects/8f630e0f-6bf9-4a04-9754-02533152a954/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/92892ab2-1334-4b1c-9761-14f5a73548ea/get-curl-command", + "views": 2, + "change": null + }, + { + "page": "/projects/946c5add-47d1-402a-97bb-a5af97e8bce7/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/946c5add-47d1-402a-97bb-a5af97e8bce7/project-metadata", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/955dfc2c-a8c6-4d04-aa4d-907610545d11", + "views": 2, + "change": -0.6989247311827957 + }, + { + "page": "/projects/990d251f-6dab-4a98-a2b6-6cfe7e4708b9/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/9dd91b6e-7c62-49d3-a3d4-74f603deffdb/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/a60803bb-f7db-45cf-b529-95436152a801/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/a60803bb-f7db-45cf-b529-95436152a801/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/a9ad7346-54b4-43a9-9055-7512aa532ba0/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/ad3c5c48\u2011ad28\u201143fd\u20119ec0\u20119b7a87e0ee6d", + "views": 2, + "change": null + }, + { + "page": "/projects/aefb9192-43fc-46d7-a4c1-29597f7ef61b/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/b486e0d9-dd8e-462a-b662-9a5bbad5edae/project-matrices", + "views": 2, + "change": -0.7741935483870968 + }, + { + "page": "/projects/b963bd4b-4bc1-4404-8425-69d74bc636b8/get-curl-command", + "views": 2, + "change": -0.6387096774193548 + }, + { + "page": "/projects/c4077b3c-5c98-4d26-a614-246d12c2e5d7/export-to-terra", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c412be53-cf95-47c7-980c-c0a0caa2d3a0/project-matrices", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/c412be53-cf95-47c7-980c-c0a0caa2d3a0/project-metadata", + "views": 2, + "change": -0.6989247311827957 + }, + { + "page": "/projects/c6ef0270-eafc-43bd-8097-c10020a03cfc/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/c7c54245-548b-4d4f-b15e-0d7e238ae6c8/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/c844538b-8854-4a95-bd01-aacbaf86d97f/project-metadata", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c8e6c5d9-fcde-4845-bead-ff96999e3051/get-curl-command", + "views": 2, + "change": -0.3978494623655914 + }, + { + "page": "/projects/ccd1f1ba-74ce-469b-9fc9-f6faea623358/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/ccef38d7-aa92-4010-9621-c4c7b1182647", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/cd61771b-661a-4e19-b269-6e5d95350de6/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/cddab57b-6868-4be4-806f-395ed9dd635a/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/cddab57b-6868-4be4-806f-395ed9dd635a/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/cddab57b-6868-4be4-806f-395ed9dd635a/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/d5c91e92-2e7f-473d-8cf3-ab03bbae21c2/project-matrices", + "views": 2, + "change": -0.7741935483870968 + }, + { + "page": "/projects/d8ae869c-39c2-4cdd-b3fc-2d0d8f60e7b8/get-curl-command", + "views": 2, + "change": -0.6387096774193548 + }, + { + "page": "/projects/dd7f2436-0c56-4709-bd17-e526bba4cc15/get-curl-command", + "views": 2, + "change": null + }, + { + "page": "/projects/df88f39f-01a8-4b5b-92f4-3177d6c0f242/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/e1fda217-7ee1-4c1a-adfa-648279dafac6/export-to-terra", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/e49e556a-da5a-442a-b45c-8691b457623e/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/e49e556a-da5a-442a-b45c-8691b457623e/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/e526d91d-cf3a-44cb-80c5-fd7676b55a1d/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/e526d91d-cf3a-44cb-80c5-fd7676b55a1d/project-metadata", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/e579d0f4-18ef-4d42-90fa-4d2afb60a862/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/e579d0f4-18ef-4d42-90fa-4d2afb60a862/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/e5fe8274-3769-4d7d-aa35-6d33c226ab43/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/eaefa1b6-dae1-4414-953b-17b0427d061e/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/eaefa1b6-dae1-4414-953b-17b0427d061e/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/ec6476ee-2949-41f3-947b-8eef41d6d3ac/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/f29b124a-8597-4862-ae98-ff3a0fd9033e/get-curl-command", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/f29b124a-8597-4862-ae98-ff3a0fd9033e/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/f2fe82f0-4454-4d84-b416-a885f3121e59/get-curl-command", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/f3825dfe-990a-431f-b971-9c26d39840db/project-matrices", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/f4d011ce-d1f5-48a4-ab61-ae14176e3a6e/project-metadata", + "views": 2, + "change": null + }, + { + "page": "/projects/faeedcb0-e046-4be7-b1ad-80a3eeabb066/export-to-terra", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/projects/faeedcb0-e046-4be7-b1ad-80a3eeabb066/get-curl-command", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/fcaa53cd-ba57-4bfe-af9c-eaa958f95c1a/project-matrices", + "views": 2, + "change": null + }, + { + "page": "/projects/fcaa53cd-ba57-4bfe-af9c-eaa958f95c1a/project-metadata", + "views": 2, + "change": -0.09677419354838712 + }, + { + "page": "/\u3001", + "views": 2, + "change": null + }, + { + "page": "/](https://data.humancellatlas.org/", + "views": 1, + "change": null + }, + { + "page": "/about/attributions", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/analyze/portals/cellxgene", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/analyze/portals/single-cell-expression-atlas", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/analyze/portals/ucsc-cell-browser", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/analyze/portals/ucsc-xena", + "views": 1, + "change": null + }, + { + "page": "/collections/7a9f4f6a1-6b8e-4f3a-8c9d-1e2f3c4d5e6f", + "views": 1, + "change": null + }, + { + "page": "/contact/", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/contribute/contributing-vignettes/", + "views": 1, + "change": null + }, + { + "page": "/data-use-agreement", + "views": 1, + "change": null + }, + { + "page": "/datasets", + "views": 1, + "change": null + }, + { + "page": "/feedback/", + "views": 1, + "change": null + }, + { + "page": "/guides/installing-the-hca-cli/", + "views": 1, + "change": null + }, + { + "page": "/hca-bio- networks/eye/atlases/retina", + "views": 1, + "change": null + }, + { + "page": "/hca-bio- networks/eye/atlases/retina-v1-0)", + "views": 1, + "change": null + }, + { + "page": "/hca-bio-networks/development/datasets", + "views": 1, + "change": -0.935483870967742 + }, + { + "page": "/hca-bio-networks/lung/datasets", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/hca-bio-networks/musculoskeletal/datasets", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/hca-bio-networks/oral/datasets", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/hca-bio-networks/organoid/atlases/organoid-endoderm-v1-0/datasets", + "views": 1, + "change": -0.8494623655913979 + }, + { + "page": "/learn/userguides/data-matrices", + "views": 1, + "change": null + }, + { + "page": "/metadata/dictionary/biomaterial/biomaterial_core", + "views": 1, + "change": null + }, + { + "page": "/metadata/dictionary/biomaterial/cell_suspension/", + "views": 1, + "change": null + }, + { + "page": "/metadata/dictionary/protocol/treatment_protocol", + "views": 1, + "change": null + }, + { + "page": "/openapi.json", + "views": 1, + "change": null + }, + { + "page": "/pipelines/hca-pipelines/data-processing-pipelines/community-pipeline-3-prime-scrna-seq", + "views": 1, + "change": null + }, + { + "page": "/pipelines/hca-pipelines/data-processing-pipelines/file-formats", + "views": 1, + "change": null + }, + { + "page": "/pipelines/hca-pipelines/data-processing-pipelines/file-formats/", + "views": 1, + "change": null + }, + { + "page": "/pipelines/hca-pipelines/data-processing-pipelines/optimus-workflow", + "views": 1, + "change": null + }, + { + "page": "/pipelines/hca-pipelines/data-processing-pipelines/pipeline-portability", + "views": 1, + "change": null + }, + { + "page": "/pipelines/qc-metrics/", + "views": 1, + "change": null + }, + { + "page": "/project-assets/project-matrices/cc95ff89-2e68-4a08-a234-480eca21ce79.homo_sapiens.mtx.zip", + "views": 1, + "change": null + }, + { + "page": "/projects/", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/01aacb68-4076-4fd9-9eb9-aba0f48c1b5a/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/01aacb68-4076-4fd9-9eb9-aba0f48c1b5a/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/01aacb68-4076-4fd9-9eb9-aba0f48c1b5a/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/027c51c6-0719-469f-a7f5-640fe57cbece/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/032880e5-2b44-4bfb-8eef-25bb48e7453f/project-matrices", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/032880e5-2b44-4bfb-8eef-25bb48e7453f/project-metadata", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/03c6fce7-789e-4e78-a27a-664d562bb738/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/0562d2ae-0b8a-459e-bbc0-6357108e5da9/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/05be4f37-4506-429b-b112-506444507d62", + "views": 1, + "change": null + }, + { + "page": "/projects/06c7dd8d-6cc6-4b79-b795-8805c47d36e1/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/07073c12-8006-4710-a00b-23abdb814904/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/07073c12-8006-4710-a00b-23abdb814904/project-metadata", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/0777b9ef-91f3-468b-9dea-db477437aa1a/get-curl-command", + "views": 1, + "change": -0.9096774193548387 + }, + { + "page": "/projects/0792db34-8047-4e62-802c-9177c9cd8e28/export-to-terra", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/07d5987e-7f9e-4f34-b0fb-a185a35504f5/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/07d5987e-7f9e-4f34-b0fb-a185a35504f5/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/07d5987e-7f9e-4f34-b0fb-a185a35504f5/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/08c7910b-5ebb-4dfc-a866-5bf392ef3b36/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/08c7910b-5ebb-4dfc-a866-5bf392ef3b36/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/0911cc04-06d6-4ffc-8318-b90b0039e8ad/get-curl-command", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/0911cc04-06d6-4ffc-8318-b90b0039e8ad/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/091cf39b-01bc-42e5-9437-f419a66c8a45 https:/explore.data.humancellatlas.org/projects/091cf39b-01bc-42e5-9437-f419a66c8a45", + "views": 1, + "change": null + }, + { + "page": "/projects/0c09fade-e079-4fde-8e60-6725b8c1d84b/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/0c3b7785-f74d-4091-8616-a68757e4c2a8/get-curl-command", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/0d4aaaac-02c3-44c4-8ae0-4465f97f83ed/get-curl-command", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/0d4aaaac-02c3-44c4-8ae0-4465f97f83ed/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/0d4aaaac-02c3-44c4-8ae0-4465f97f83ed/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/0d4b87ea-6e9e-4569-82e4-1343e0e3259f", + "views": 1, + "change": null + }, + { + "page": "/projects/0d737cce-1c1c-493a-8e2e-b00143bccc12/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/0d737cce-1c1c-493a-8e2e-b00143bccc12/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/0d737cce-1c1c-493a-8e2e-b00143bccc12/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/0efecd20-2b52-4e4f-96c5-9b4b94158713/export-to-terra", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/0f4c8d0a-8e8b-4e0d-9f5a-9d7b8e8b4e0d", + "views": 1, + "change": null + }, + { + "page": "/projects/0fd8f918-62d6-4b8b-ac35-4c53dd601f71/export-to-terra", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/0fd8f918-62d6-4b8b-ac35-4c53dd601f71/get-curl-command", + "views": 1, + "change": -0.8870967741935484 + }, + { + "page": "/projects/0fd8f918-62d6-4b8b-ac35-4c53dd601f71/project-metadata", + "views": 1, + "change": -0.8870967741935484 + }, + { + "page": "/projects/10a845f7-0361-46fa-92a3-2a36483136b1/export-to-terra", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/116965f3-f094-4769-9d28-ae675c1b569c/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/12f32054-8f18-4dae-8959-bfce7e3108e7/export-to-terra", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/135f7f5c-4a85-4bcf-9f7c-4f035ff1e428/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/135f7f5c-4a85-4bcf-9f7c-4f035ff1e428/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/135f7f5c-4a85-4bcf-9f7c-4f035ff1e428/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/1538d572-bcb7-426b-8d2c-84f3a7f87bb0/get-curl-command", + "views": 1, + "change": -0.8996415770609318 + }, + { + "page": "/projects/16241d82-", + "views": 1, + "change": null + }, + { + "page": "/projects/1688d7cc-6f5c-49ef-b353-e308b61d4e4c/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/16cd6791-2adb-4d0f-8222-0184dada6456/export-to-terra", + "views": 1, + "change": -0.8870967741935484 + }, + { + "page": "/projects/16dc40f9-2c13-42e3-8cdf-251e95bfc043/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/16e99159-78bc-44aa-b479-55a5e903bf50/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/16e99159-78bc-44aa-b479-55a5e903bf50/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/16ed4ad8-7319-46b2-8859-6fe1c1d73a82/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/18d4aae2-8363-4e00-8eeb-b9e568402cf8/project-metadata", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/1cd1f41f-f81a-486b-a05b-66ec60f81dcf/project-matrices", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/1dd552a5-eb4f-4b92-8088-7224bcbd0629/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/1dd552a5-eb4f-4b92-8088-7224bcbd0629/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/1dddae6e-3753-48af-b20e-fa22abad125d/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/1dddae6e-3753-48af-b20e-fa22abad125d/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/1dddae6e-3753-48af-b20e-fa22abad125d/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/1defdada-a365-44ad-9b29-443b06bd11d6/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/1eba4d0b-2d15-4ba7-bb3c-d4654dd94519/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/1ebe8c34-454e-4c28-bd71-3a3e8b127be4/export-to-terra", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/1fa8b11f-56fa-45a6-a777-6af70e17a6b3/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2043c65a-1cf8-4828-a656-9e247d4e64f1/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/2043c65a-1cf8-4828-a656-9e247d4e64f1/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/2043c65a-1cf8-4828-a656-9e247d4e64f1/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/2079bb2e-676e-4bbf-8c68-f9c6459edcbb/get-curl-command", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/2086eb05-10b9-432b-b7f0-169ccc49d270/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/20f37aaf-caa1-40e6-9123-be6ce8feb2d6/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/2184e63d-82d8-4ab2-839e-e93f8395f568/get-curl-command", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/2184e63d-82d8-4ab2-839e-e93f8395f568/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/21ea8ddb-525f-4f1f-a820-31f0360399a2/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/222a92d5-277b-489c-aad8-a680d1fd2b12", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/23509202-1e3c-4959-8a45-9c5b642a1066/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/23509202-1e3c-4959-8a45-9c5b642a1066/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/23587fb3-1a4a-4f58-ad74-cc9a4cb4c254/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/248fcf03-16c6-4a41-b6cc-aad4d894ca42/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/24d0dbbc-54eb-4904-8141-934d26f1c936/export-to-terra", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/24d0dbbc-54eb-4904-8141-934d26f1c936/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/272b7602-66cd-4b02-a86b-2b7c9c51a9ea/get-curl-command", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/279f1766-3319-4e3c-9f99-6fb59ba9b3e5/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/28371655-60ba-449e-a303-5859b29ead65/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/28371655-60ba-449e-a303-5859b29ead65/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/28371655-60ba-449e-a303-5859b29ead65/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/28dd1438-8f40-40d0-8e53-ee3301b66218/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/28dd1438-8f40-40d0-8e53-ee3301b66218/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/2973a42c-f810-4812-9a23-5bbc9644588d/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/29ed827b-c539-4f4c-bb6b-ce8f9173dfb7/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/29ed827b-c539-4f4c-bb6b-ce8f9173dfb7/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2a64db43-1b55-4639-aabb-8dba0145689d", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2ad191cd-bd7a-409b-9bd1-e72b5e4cce81/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/2b38025d-a5ea-4c0f-b22e-367824bcaf4c/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/2b81ecc4-6ee0-438f-8c5b-c10b2464069e/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/2c041c26-f75a-495f-ab36-a076f89d422a/project-matrices", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/2d846095-8a33-4f3c-97d4-585bafac13b4/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/2e40df1e-d3c2-48b4-8a17-c46e34d7be59/get-curl-command", + "views": 1, + "change": -0.8870967741935484 + }, + { + "page": "/projects/2f676143-80c2-4bc6-b7b4-2613fe0fadf0/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/3089d311-f9ed-44dd-bb10-397059bad4dc/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/3089d311-f9ed-44dd-bb10-397059bad4dc/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/31887183-a72c-4308-9eac-c6140313f39c/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/31887183-a72c-4308-9eac-c6140313f39c/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/31887183-a72c-4308-9eac-c6140313f39c/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/326b36bd-0975-475f-983b-56ddb8f73a4d/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/3373e59c-525f-4a83-8c9c-d8b280454697/export-to-terra", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/34c9a62c-a610-4e31-b343-8fb7be676f8c/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/34cba5e9-ecb1-4d81-bf08-48987cd63073", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/34da2c5f-8011-48af-a7fd-ad2f56ec10f4/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/34da2c5f-8011-48af-a7fd-ad2f56ec10f4/get-curl-command", + "views": 1, + "change": -0.8494623655913979 + }, + { + "page": "/projects/34da2c5f-8011-48af-a7fd-ad2f56ec10f4/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/376a7f55-b876-4f60-9cf3-ed7bc83d5415/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/377c35d1-93bf-470c-8067-08f954b269bd/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/377c35d1-93bf-470c-8067-08f954b269bd/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/377c35d1-93bf-470c-8067-08f954b269bd/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/38449aea-70b5-40db-84b3-1e08f32efe34/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/38449aea-70b5-40db-84b3-1e08f32efe34/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/38e44dd0-c3df-418e-9256-d0824748901f/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/3a6efb7c-fb77-4fc3-a3c5-d2cccf1a607f/matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/3bb95c61-630d-4970-ae40-8a951bd11cc1/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/3bb95c61-630d-4970-ae40-8a951bd11cc1/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/3cdaf942-f8ad-42e8-a77b-4efedb9ea7b6", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/3cdaf942-f8ad-42e8-a77b-4efedb9ea7b6/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/3ce9ae94-c469-419a-9637-5d138a4e642f/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/3ce9ae94-c469-419a-9637-5d138a4e642f/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/3e92c74d-256c-40cd-9273-16f155da8342", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/403c3e76-6814-4a2d-a580-5dd5de38c7ff", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/40bb5783-c924-4d19-b6cb-d26a8d3ae1d8/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/40bb5783-c924-4d19-b6cb-d26a8d3ae1d8/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/40bb5783-c924-4d19-b6cb-d26a8d3ae1d8/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/40bb5783-c924-4d19-b6cb-d26a8d3ae1d8/project-metadata", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/40ca2a03-ec0f-471f-a834-948199495fe7/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/41fb1734-a121-4616-95c7-3b732c9433c7", + "views": 1, + "change": -0.8193548387096774 + }, + { + "page": "/projects/421bc6cd-bbb4-4398-ac60-a32ea94f02ae/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/42d4f8d4-5422-4b78-adae-e7c3c2ef511c/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/42d4f8d4-5422-4b78-adae-e7c3c2ef511c/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/453d7ee2-319f-496c-9862-99d397870b63/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/453d7ee2-319f-496c-9862-99d397870b63/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/457d0bfe-79e4-43f1-be5d-83bf080d809e/project-metadata", + "views": 1, + "change": -0.8709677419354839 + }, + { + "page": "/projects/45c2c853-d06f-4879-957e-f1366fb5d423", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/46a7e4bf-0474-4a8f-8d18-43afcde90491/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/474a4229-840e-4d63-82af-8d3aa615ee17/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/474a4229-840e-4d63-82af-8d3aa615ee17/get-curl-command", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/474a4229-840e-4d63-82af-8d3aa615ee17/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/48f60534-", + "views": 1, + "change": null + }, + { + "page": "/projects/48f60534-ba4e-45bc-aa5b-6d3a6c45962e/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/48f60534-ba4e-45bc-aa5b-6d3a6c45962e/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/4a95101c-9ffc-4f30-a809-f04518a23803/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/4af795f7-3e1d-4341-b867-4ac0982b9efd/project-metadata", + "views": 1, + "change": -0.8494623655913979 + }, + { + "page": "/projects/4bdaedeb-99ae-4fb4-be69-57497cf98b90/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/4c73d1e4-bad2-4a22-a0ba-55abbdbdcc3d/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/4c73d1e4-bad2-4a22-a0ba-55abbdbdcc3d/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/4c8e9d75-d85a-47de-9598-06549cf44b91", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/4f4f0193-ede8-4a82-8cb0-7a0a22f06e63/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/50154d1e-2308-44bf-9608-10c7afaa560b/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/51f02950-ee25-4f4b-8d07-59aa99bb3498/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/520afa10-f9d2-4e93-ab7a-26c4c863ce18/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/520afa10-f9d2-4e93-ab7a-26c4c863ce18/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/52b29aa4-c8d6-42b4-807a-b35be94469ca/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/52d10a60-c8d1-4d06-8a5e-af0d5c0d5034", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/53c53cd4-8127-4e12-bc7f-8fe1610a715c/get-curl-command", + "views": 1, + "change": -0.8193548387096774 + }, + { + "page": "/projects/53c53cd4-8127-4e12-bc7f-8fe1610a715c/project-matrices", + "views": 1, + "change": -0.8193548387096774 + }, + { + "page": "/projects/559bb888-7829-41f2-ace5-2c05c7eb81e9/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/566d00b0-e1f8-4b92-9cbd-57de9fad0050/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/566d00b0-e1f8-4b92-9cbd-57de9fad0050/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/575c0ad9-c78e-469b-9fdf-9a68dd881137/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/57a2c2de-b0d4-465a-be53-a41e59e75fab/project-matrices", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/58028aa8-0ed2-49ca-b60f-15e2ed5989d5/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/5a54c617-0eed-486e-8c1a-8a8041fc1729/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/5b5f05b7-2482-468d-b76d-8f68c04a7a47/export-to-terra", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/5b910a43-7fb5-4ea7-b9d6-43dbd1bf2776", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/5bd01deb-01ee-4611-8efd-cf0ec5f56ac4/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/5eafb94b-02d8-423e-81b8-3673da319ca0/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/5eafb94b-02d8-423e-81b8-3673da319ca0/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/5eafb94b-02d8-423e-81b8-3673da319ca0/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/5f1a1aee-6c48-4dd4-a2c4-eb4ca6aadf74/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/5f44a860-d96e-4a99-b67e-24e1b8ccfd26", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/60109425-a6e6-4be1-a3bc-15de680317d4", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/602628d7-c038-48a8-aa97-ffbb2cb44c9d/get-curl-command", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/602628d7-c038-48a8-aa97-ffbb2cb44c9d/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/602628d7-c038-48a8-aa97-ffbb2cb44c9d/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/6137c3f4-261f-4192-b32e-4827a77ff793/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/61515820-5bb8-45d0-8d12-f0850222ecf0/get-curl-command", + "views": 1, + "change": -0.8996415770609318 + }, + { + "page": "/projects/6179c38c-9987-4e7c-a4bb-d34cf33a3c3f\u8fd9\u662f\u4ed6\u7684\u9879\u76ee\u4ecb\u7ecd", + "views": 1, + "change": null + }, + { + "page": "/projects/62ef92b1-0f3e-4d92-a5af-b6e3e1f3c073", + "views": 1, + "change": null + }, + { + "page": "/projects/63b5b6c1-bbcd-487d-8c2e-0095150c1ecd/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/63b5b6c1-bbcd-487d-8c2e-0095150c1ecd/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/645b20c9-5ed0-4500-86b5-7aef770d010a", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/65858543-530d-48a6-a670-f972b34dfe10/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/65cbfea5-5c54-4255-a1d0-14549a86a5c1/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/65cbfea5-5c54-4255-a1d0-14549a86a5c1/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/65d7a168-4d62-4bc0-8324-4e742aa62de6/export-to-terra", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/65d7a168-4d62-4bc0-8324-4e742aa62de6/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/660fc8b5-", + "views": 1, + "change": null + }, + { + "page": "/projects/6621c827", + "views": 1, + "change": null + }, + { + "page": "/projects/66d7d92a-d6c5-492c-815b-f81c7c93c984/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/67a3de09-45b9-49c3-a068-ff4665daa50e", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/6836c1e4-906b-4c34-a11c-cb025167896d", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/69324a96-a68a-4514-bbb4-f8f3ea4bd0f1/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/6ac8e777-f9a0-4288-b5b0-446e8eba3078/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/6c040a93-8cf8-4fd5-98de-2297eb07e9f6/get-curl-command", + "views": 1, + "change": -0.8193548387096774 + }, + { + "page": "/projects/6c040a93-8cf8-4fd5-98de-2297eb07e9f6/project-matrices", + "views": 1, + "change": -0.9247311827956989 + }, + { + "page": "/projects/6c040a93-8cf8-4fd5-98de-2297eb07e9f6/project-metadata", + "views": 1, + "change": -0.8709677419354839 + }, + { + "page": "/projects/6e177195-0ac0-468b-99a2-87de96dc9db4/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/6e522b93-9b70-4f0c-9990-b9cff721251b/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/6e60a555-fd95-4aa2-8e29-3ec2ef01a580/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/6f89a7f3-8d4a-4344-aa4f-eccfe7e91076/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/6f89a7f3-8d4a-4344-aa4f-eccfe7e91076/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/6f89a7f3-8d4a-4344-aa4f-eccfe7e91076/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/7027adc6-c9c9-46f3-84ee-9badc3a4f53b/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/71436067-ac41-4ace-be1b-2fbcc2cb02fa", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/71eb5f6d-cee0-4297-b503-b1125909b8c7/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/71eb5f6d-cee0-4297-b503-b1125909b8c7/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/72ff4818-5692-4bbc-8886-e47763531023/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/73011a86-4755-48ac-9f70-a28903b4ad77/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/739ef78a-ba5d-4487-a013-9982db66d222/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/74b6d569-3b11-42ef-b6b1-a0454522b4a0/export-to-terra", + "views": 1, + "change": -0.8709677419354839 + }, + { + "page": "/projects/75dbbce9-0cde-489c-88a7-93e8f92914a3/export-to-terra", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/76bc0e97-8cae-43d4-a647-477a13be47f.", + "views": 1, + "change": null + }, + { + "page": "/projects/76bc0e97-8cae-43d4-a647-477a13be47f9.", + "views": 1, + "change": null + }, + { + "page": "/projects/77423e58-0fbb-495a-9ec2-bd9a8010f21d/project-metadata", + "views": 1, + "change": -0.8494623655913979 + }, + { + "page": "/projects/77780d56-03c0-481f-aade-2038490cef9f/export-to-terra", + "views": 1, + "change": -0.8193548387096774 + }, + { + "page": "/projects/77c13c40-a598-4036-807f-be09209ec2dd/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/77c13c40-a598-4036-807f-be09209ec2dd/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/77dedd59-1376-4887-9bca-dc42b56d5b7a/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/78d7805b-fdc8-472b-8058-d92cf886f7a4/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/78d7805b-fdc8-472b-8058-d92cf886f7a4/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/79351583-b212-44ba-b473-731bdcddb407/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/79351583-b212-44ba-b473-731bdcddb407/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/79b13a2a-9ca1-42a4-97bd-70208a11bea6/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/79b13a2a-9ca1-42a4-97bd-70208a11bea6/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/7a8d45f1-353b-4508-8e89-65a96785b167", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/7ac8822c-4ef0-4194-adf0-74290611b1c6/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/7adede6a-0ab7-45e6-9b67-ffe7466bec1f/export-to-terra", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/7b393e4d-65bc-4c03-b402-aae769299329/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/7b393e4d-65bc-4c03-b402-aae769299329/get-curl-command", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/7b947aa2-43a7-4082-afff-222a3e3a4635/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/7be05025-9972-493a-856f-3342a8d1b183/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/7be05025-9972-493a-856f-3342a8d1b183/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/7c599029-7a3c-4b5c-8e79-e72c9a9a65fe/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/7dcffc32-7c82-4396-9a4f-88b5579bfe8a/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/7f351a4c-d24c-4fcd-9040-f79071b097d0/get-curl-command", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/8185730f-4113-40d3-9cc3-929271784c2b/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/838d4660-3d62-4b08-b32d-dc5cbd93919d\uff09\uff0c\u544a\u8bc9\u6211\u4f60\u770b\u5230\u4e86\u4ec0\u4e48\uff0c\u6211\u7acb\u523b\u5e2e\u4f60\u89e3\u8bfb", + "views": 1, + "change": null + }, + { + "page": "/projects/83f5188e-3bf7-4956-9544-cea4f8997756/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/83f5188e-3bf7-4956-9544-cea4f8997756/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/842605c7-375a-47c5-9e2c-a71c2c00fcad/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/842605c7-375a-47c5-9e2c-a71c2c00fcad/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/842605c7-375a-47c5-9e2c-a71c2c00fcad/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/8559a8ed-5d8c-4fb6-bde8-ab639cebf03c", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/86fe0a0c-88b3-4a3e-94a1-6f9feadc401e/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/86fe0a0c-88b3-4a3e-94a1-6f9feadc401e/project-matrices", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/87d52a86-bdc7-440c-b84d-170f7dc346d9/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/87d52a86-bdc7-440c-b84d-170f7dc346d9/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/888f1766-4c84-43bb-8717-b5f9d2046097/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/888f1766-4c84-43bb-8717-b5f9d2046097/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/88ec040b-8705-4f77-8f41-f81e57632f7d/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/8999b456-6fa6-438b-ab17-b62b1d8ec0c3/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/8999b456-6fa6-438b-ab17-b62b1d8ec0c3/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/8999b456-6fa6-438b-ab17-b62b1d8ec0c3/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/8a40ff19-e614-4c50-b23b-5c9e1d546bab/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/8ab8726d-81b9-4bd2-acc2-4d50bee786b4/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/8b9cb6ae-6a43-4e47-b9fb-3df7aeec941f/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/8b9cb6ae-6a43-4e47-b9fb-3df7aeec941f/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/8bd2e5f6-9453-4b9b-9c56-59e3a40dc87e/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/8bd2e5f6-9453-4b9b-9c56-59e3a40dc87e/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/8c3c290d-dfff-4553-8868-54ce45f4ba7f/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/8c4e43fb-f7f3-4446-8367-a3fe9e0b8fd7/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/8dacb243-e918-4bd2-bb9a-aac6dc424161", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/8dadf21e-0a44-4fa3-aafc-7633b2a9eaa4/get-curl-command", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/8dcbd84a-6243-4501-a684-0dcd084bb536/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/8dcbd84a-6243-4501-a684-0dcd084bb536/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/8dcbd84a-6243-4501-a684-0dcd084bb536/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/8dcbd84a-6243-4501-a684-0dcd084bb536/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/8f630e0f-6bf9-4a04-9754-02533152a954/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/8f630e0f-6bf9-4a04-9754-02533152a954/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/8fd1609b-cd2d-4b4d-bb96-49ae6b8ade2f/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/8fd1609b-cd2d-4b4d-bb96-49ae6b8ade2f/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/90588227-d8c1-47ee-a397-0d0b1d79aea9", + "views": 1, + "change": -0.8494623655913979 + }, + { + "page": "/projects/90bd6933-40c0-48d4-8d76-778c103bf545/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/90bd6933-40c0-48d4-8d76-778c103bf545/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/92892ab2-1334-4b1c-9761-14f5a73548ea/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/955dfc2c-a8c6-4d04-aa4d-907610545d11/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/955dfc2c-a8c6-4d04-aa4d-907610545d11/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/95d058bc-9cec-4c88-8d2c-05b4a45bf24f/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/95d058bc-9cec-4c88-8d2c-05b4a45bf24f/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/962bd805-eb89-4c54-bad2-008e497d1307", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/9746f4e0-d3b2-4543-89b3-10288162851b/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/9746f4e0-d3b2-4543-89b3-10288162851b/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/9762d70c-", + "views": 1, + "change": null + }, + { + "page": "/projects/9762d70c-...", + "views": 1, + "change": null + }, + { + "page": "/projects/99101928-d9b1-4aaf-b759-e97958ac7403/get-curl-command", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/99101928-d9b1-4aaf-b759-e97958ac7403/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/996120f9-e84f-409f-a01e-732ab58ca8b9/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/996120f9-e84f-409f-a01e-732ab58ca8b9/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/996120f9-e84f-409f-a01e-732ab58ca8b9/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/9a23ac2d-93dd-4bac-9bb8-040e6426db9d/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/9bab0f03-a725-4a13-9ab1-196e46cd80ed", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/9c20a245-f2c0-43ae-82c9-2232ec6b594f/matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/9d97f01f-9313-416e-9b07-560f048b2350/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/9dd91b6e-7c62-49d3-a3d4-74f603deffdb/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/9f17ed7d-9325-4723-a120-b00e48db20c0/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/9fc0064b-84ce-40a5-a768-e6eb3d364ee0, https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi", + "views": 1, + "change": null + }, + { + "page": "/projects/9ff75ece-ce81-483a-bb1f-85e727f3805b/get-curl-command", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/9ff75ece-ce81-483a-bb1f-85e727f3805b/project-matrices", + "views": 1, + "change": -0.8494623655913979 + }, + { + "page": "/projects/9ff75ece-ce81-483a-bb1f-85e727f3805b/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/GSE262512", + "views": 1, + "change": null + }, + { + "page": "/projects/OTU1ZGZjMm", + "views": 1, + "change": null + }, + { + "page": "/projects/a27dd619-25ad-46a0-ae0c-5c4940a1139b/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/a27dd619-25ad-46a0-ae0c-5c4940a1139b/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/a2a2f324-cf24-409e-a859-deaee871269c/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/a39728aa-70a0-4201-b0a2-81b7badf3e71/export-to-terra", + "views": 1, + "change": -0.8193548387096774 + }, + { + "page": "/projects/a4f154f8-5cc9-40b5-b8d7-af90afce8a8f/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/a60803bb-f7db-45cf-b529-95436152a801/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/a60803bb-f7db-45cf-b529-95436152a801/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/a62dae2e-cd69-4d5c-b5f8-4f7e8abdbafa/get-curl-command", + "views": 1, + "change": -0.8494623655913979 + }, + { + "page": "/projects/a62dae2e-cd69-4d5c-b5f8-4f7e8abdbafa/project-metadata", + "views": 1, + "change": -0.8709677419354839 + }, + { + "page": "/projects/a7c66eb1-4a4e-4f6c-9e30-ad2a485f8301", + "views": 1, + "change": null + }, + { + "page": "/projects/a80a63f2-e223-4890-81b0-415855b89abc/export-to-terra", + "views": 1, + "change": -0.8870967741935484 + }, + { + "page": "/projects/a96b71c0-78a7-42d1-88ce-83c78925cfeb/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/a96b71c0-78a7-42d1-88ce-83c78925cfeb/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/a96b71c0-78a7-42d1-88ce-83c78925cfeb/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/a96b71c0-78a7-42d1-88ce-83c78925cfeb/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/a9c022b4-c771-4468-b769-cabcf9738de3/project-matrices", + "views": 1, + "change": -0.8709677419354839 + }, + { + "page": "/projects/a9c022b4-c771-4468-b769-cabcf9738de3/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/a9f5323a-ce71-471c-9caf-04cc118fd1d7/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/aa55000c-0168-48d8-9026-2d3a76ec8af3/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/aa55000c-0168-48d8-9026-2d3a76ec8af3/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/aa55000c-0168-48d8-9026-2d3a76ec8af3/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/abe1a013-af7a-45ed-8c26-f3793c24a1f4/export-to-terra", + "views": 1, + "change": -0.8193548387096774 + }, + { + "page": "/projects/aca93e28-7d87-4aa4-b8ae-498b9b235f46", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/aca93e28-7d87-4aa4-b8ae-498b9b235f46/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/ad3c5c48-ad28-43fd-9ec0-9b7a87e0ee6d/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/ad3c5c48-ad28-43fd-9ec0-9b7a87e0ee6d/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/ae62bb31-55ca-4127-b0fb-b1771a604645/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/aefb9192-43fc-46d7-a4c1-29597f7ef61b/get-curl-command", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/b176d756-62d8-4933-83a4-8b026380262f/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/b176d756-62d8-4933-83a4-8b026380262f/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/b208466a-6fb0-4385-8cfb-8e03ff6b939e/export-to-terra", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/b32a9915-c81b-4cbc-af53-3a66b5da3c9a/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/b486e0d9-dd8e-462a-b662-9a5bbad5edae/export-to-terra", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/b51f49b4-0d2e-4cbd-bbd5-04cd171fc2fa/get-curl-command", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/b51f49b4-0d2e-4cbd-bbd5-04cd171fc2fa/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/b7259878-436c-4274-bfff-ca76f4cb7892", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/b733dc1b-1d55-45e3-8036-7eab0821742c/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/b91c623b-1945-4727-b167-0a93027b0d3f/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/b91c623b-1945-4727-b167-0a93027b0d3f/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/bc5512cc-9544-4aa4-8b75-8af445ee2257/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/bc5512cc-9544-4aa4-8b75-8af445ee2257/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/bfaedc29-fe84-4e72-a461-75dc8aabbd1b/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/c0d82ef2-1504-4ef0-9e5e-d8a13e45fdec/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/c0d82ef2-1504-4ef0-9e5e-d8a13e45fdec/get-curl-command", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/c0d82ef2-1504-4ef0-9e5e-d8a13e45fdec/project-matrices", + "views": 1, + "change": -0.8193548387096774 + }, + { + "page": "/projects/c0d82ef2-1504-4ef0-9e5e-d8a13e45fdec/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/c0fecf0b-af86-41b8-ba82-d5fd81b7542a/export-to-terra", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/c0fecf0b-af86-41b8-ba82-d5fd81b7542a/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/c1a9a93d-d9de-4e65-9619-a9cec1052eaa/project-matrices", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/c211fd49-d980-4ba1-8c6a-c24254a3cb52/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/c211fd49-d980-4ba1-8c6a-c24254a3cb52/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c302fe54-d22d-451f-a130-e24df3d6afca/project-metadata", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/c31fa434-c9ed-4263-a9b6-d9ffb9d44005/project-metadata", + "views": 1, + "change": -0.9096774193548387 + }, + { + "page": "/projects/c4e11369-78d4-4d29-ba8e-b67907c4c65c/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/c4e11369-78d4-4d29-ba8e-b67907c4c65c/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/c4e11369-78d4-4d29-ba8e-b67907c4c65c/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/c5f46615-68de-4cf4-bbc2-a0ae10f08243/get-curl-command:", + "views": 1, + "change": null + }, + { + "page": "/projects/c6a50b2a-3dfd-4ca8-9b48-3e682f568a25", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/c6ad8f9b-d26a-4811-b2ba-93d487978446/get-curl-command", + "views": 1, + "change": -0.8193548387096774 + }, + { + "page": "/projects/c6ad8f9b-d26a-4811-b2ba-93d487978446/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c6ef0270-eafc-43bd-8097-c10020a03cfc/export-to-terra", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/c6ef0270-eafc-43bd-8097-c10020a03cfc/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/c715cd2f-dc7c-44a6-9cd5-b6a6d9f075ae/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c715cd2f-dc7c-44a6-9cd5-b6a6d9f075ae/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/c715cd2f-dc7c-44a6-9cd5-b6a6d9f075ae/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/c7a7fde7-aa8c-4ef0-9424-612b7cd2cdb4", + "views": 1, + "change": null + }, + { + "page": "/projects/c7c54245-548b-4d4f-b15e-0d7e238ae6c8/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/c7c54245-548b-4d4f-b15e-0d7e238ae6c8/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c7c54245-548b-4d4f-b15e-0d7e238ae6c8/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/c844538b-8854-4a95-bd01-aacbaf86d97f/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/c8503de8-d02d-4bda-ad06-4c851b37fa97", + "views": 1, + "change": null + }, + { + "page": "/projects/c893cb57-5c9f-4f26-9312-21b85be84313/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/cb4e5e44-d898-4819-a456-393527c3186f/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/cb4e5e44-d898-4819-a456-393527c3186f/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/cbd2911f-252b-4428-abde-69e270aefdfc/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/cc95ff89-2e68-4a08-a234-480eca21ce7", + "views": 1, + "change": null + }, + { + "page": "/projects/cc95ff89-2e68-4a08-a234-480eca21ce79.", + "views": 1, + "change": null + }, + { + "page": "/projects/cc95ff89-336d-4e74-8870-1085d927e20c", + "views": 1, + "change": null + }, + { + "page": "/projects/cc95ff89\u20132e68\u20134a08-a234\u2013480eca21ce79", + "views": 1, + "change": null + }, + { + "page": "/projects/ccd1f1ba-74ce-469b-9fc9-f6faea623358/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/ccd1f1ba-74ce-469b-9fc9-f6faea623358/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/ccd1f1ba-74ce-469b-9fc9-f6faea623358/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/ccef38d7-aa92-4010-9621-c4c7b1182647/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/ccef38d7-aa92-4010-9621-c4c7b1182647/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/ccef38d7-aa92-4010-9621-c4c7b1182647/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/ccef38d7-aa92-4010-9621-c4c7b1182647/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/cd61771b-661a-4e19-b269-6e5d95350de6/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/cdc2d270-6c99-4142-8883-9bd95c041d05", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/cddab57b-6868-4be4-806f-395ed9dd635a/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/ce33dde2-382d-448c-b6ac-bfb424644f23", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/ce7b12ba-664f-4f79-8f", + "views": 1, + "change": null + }, + { + "page": "/projects/ce7b12ba-664f-4f79-8fc7-3de6b1892183/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/ce7b12ba-664f-4f79-8fc7-3de6b1892183/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/cea413af-79b3-4f11-8b48-383fe9a65fbe/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/cea413af-79b3-4f11-8b48-383fe9a65fbe/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/d012d476-8f8c-4ff3-89d6-ebbe22c1b5c1/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/d3a4ceac-4d66-4984-9704-2570c0647a56/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/d5c91e92-2e7f-473d-8cf3-ab03bbae21c2/project-metadata", + "views": 1, + "change": -0.9305210918114144 + }, + { + "page": "/projects/d6225aee-8f0e-4b20-a20c-682509a9ea14/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/d6225aee-8f0e-4b20-a20c-682509a9ea14/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/d6225aee-8f0e-4b20-a20c-682509a9ea14/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/d6225aee-8f0e-4b20-a20c-682509a9ea14/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/d71c76d3-3670-4774-a9cf-034249d37c60/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/d71c76d3-3670-4774-a9cf-034249d37c60/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/d8ae869c-39c2-4cdd-b3fc-2d0d8f60e7b8/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/d8ae869c-39c2-4cdd-b3fc-2d0d8f60e7b8/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/da2747fa-2921-42e0-afd4-39ef57b2b88b", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/da74b507-60ee-4dd1-bd02-807bb051a337/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/da74b507-60ee-4dd1-bd02-807bb051a337/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/da74b507-60ee-4dd1-bd02-807bb051a337/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/da9d6f24-3bdf-4eaa-9e3f-f47ce2a65b36/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/daf9d982-7ce6-43f6-ab51-272577290606/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/daf9d982-7ce6-43f6-ab51-272577290606/project-matrices", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/dbcd4b1d-31bd-4eb5-94e1-50e8706fa192/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/dcbb50d1-9acf-4f70-9fda-b1f63a948c49", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/dcc28fb3-7bab-48ce-bc4b-684c00e133ce/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/dcc28fb3-7bab-48ce-bc4b-684c00e133ce/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/dcc28fb3-7bab-48ce-bc4b-684c00e133ce/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/dd7f2436-0c56-4709-bd17-e526bba4cc15/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/dd7f2436-0c56-4709-bd17-e526bba4cc15/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/dea97145-f712-431c-a223-6b5f565f362a", + "views": 1, + "change": null + }, + { + "page": "/projects/df8eb7ce-3707-46af-b823-e081a562e954/export-to-terra", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/e49e556a-da5a-442a-b45c-8691b457623e/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/e49e556a-da5a-442a-b45c-8691b457623e/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/e5d45579-1f5b-48c3-b568-320d93e7ca72/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/e5d45579-1f5b-48c3-b568-320d93e7ca72/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/e5d45579-1f5b-48c3-b568-320d93e7ca72/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/e5ef5c5f-b856-47d1-b643-62c265528060/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/e5fe8274-3769-4d7d-aa35-6d33c226ab43/project-matrices", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/e5fe8274-3769-4d7d-aa35-6d33c226ab43/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/e6773550-c1a6-4949-8643-1a3154cf2670/get-curl-command", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/e6773550-c1a6-4949-8643-1a3154cf2670/project-metadata", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/e77fed30-959d-4fad-bc15-a0a5a85c21d2/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/e889ffc9-86f6-44f5-b684-dfce78e552a3/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/e889ffc9-86f6-44f5-b684-dfce78e552a3/get-curl-command", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/e889ffc9-86f6-44f5-b684-dfce78e552a3/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/e889ffc9-86f6-44f5-b684-dfce78e552a3/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/e993adcd-d4ba-4f88-9a05-d1c05bdf0c45/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/e993adcd-d4ba-4f88-9a05-d1c05bdf0c45/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/e9f36305-d857-44a3-93f0df4e6007dc97", + "views": 1, + "change": null + }, + { + "page": "/projects/ea9eec5a-4fc2-4c58-94d0-2fcb598732bc/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/ea9f4ea7-d7b3-41e7-b23a-43f95f569074/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/ec6476ee-2949-41f3-947b-8eef41d6d3ac/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/ec6476ee-2949-41f3-947b-8eef41d6d3ac/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/ef1d9888-fa86-47a4-bb72-0ab0f20f7004/export-to-terra", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/f3825dfe-990a-431f-b971-9c26d39840db/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/f3825dfe-990a-431f-b971-9c26d39840db/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/f48e7c39-cc67-4055-9d79-bc437892840c/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/f48e7c39-cc67-4055-9d79-bc437892840c/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/f4d011ce-d1f5-48a4-ab61-ae14176e3a6e/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/f4d011ce-d1f5-48a4-ab61-ae14176e3a6e/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/f598aee0-d269-4036-90e9-d6d5b1c84429/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/f6133d2a-9f3d-4ef9-9c19-c23d6c7e6cc0/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/f77290ae-0d7b-4239-b0fe-3cf2c9e8858d/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/f81efc03-9f56-4354-aabb-6ce819c3d414/export-to-terra", + "views": 1, + "change": null + }, + { + "page": "/projects/f81efc03-9f56-4354-aabb-6ce819c3d414/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/f81efc03-9f56-4354-aabb-6ce819c3d414/project-matrices", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/f81efc03-9f56-4354-aabb-6ce819c3d414/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/f83165c5-e2ea-4d15-a5cf-33f3550bffde/export-to-terra", + "views": 1, + "change": -0.8709677419354839 + }, + { + "page": "/projects/f86f1ab4-1fbb-4510-ae35-3ffd752d4dfc/project-matrices", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/f8aa201c-4ff1-45a4-890e-840d63459ca2/project-matrices", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/fae72d89-4ac4-4aab-9b93-574775e168d4/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/faeedcb0-e046-4be7-b1ad-80a3eeabb066/project-metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/fcaa53cd-ba57-4bfe-af9c-eaa958f95c1a/get-curl-command", + "views": 1, + "change": -0.8193548387096774 + }, + { + "page": "/.../brain-v1-", + "views": 0, + "change": -1.0 + }, + { + "page": "/.../brain-v1-0", + "views": 0, + "change": -1.0 + }, + { + "page": "/_next/", + "views": 0, + "change": -1.0 + }, + { + "page": "/_next/data", + "views": 0, + "change": -1.0 + }, + { + "page": "/about-us/staff", + "views": 0, + "change": -1.0 + }, + { + "page": "/analyze", + "views": 0, + "change": -1.0 + }, + { + "page": "/analyze/methods/stream", + "views": 0, + "change": -1.0 + }, + { + "page": "/analyze/portals/cellxgene/", + "views": 0, + "change": -1.0 + }, + { + "page": "/cells", + "views": 0, + "change": -1.0 + }, + { + "page": "/collections/6621c827-b57a-4268-bc80-df4049140193", + "views": 0, + "change": -1.0 + }, + { + "page": "/contact/join-the-discussion", + "views": 0, + "change": -1.0 + }, + { + "page": "/dcp-updates/", + "views": 0, + "change": -1.0 + }, + { + "page": "/hca-bio-networks/eye/atlases/retina-v1-0\u200b", + "views": 0, + "change": -1.0 + }, + { + "page": "/hca-bio-networks/lung/atlases", + "views": 0, + "change": -1.0 + }, + { + "page": "/hca-bio-networks/lung/atlases/l", + "views": 0, + "change": -1.0 + }, + { + "page": "/hca-bio-networks/nervous-system/atlases/brain-v3-0", + "views": 0, + "change": -1.0 + }, + { + "page": "/hca-bio-networks/pancreas/", + "views": 0, + "change": -1.0 + }, + { + "page": "/license", + "views": 0, + "change": -1.0 + }, + { + "page": "/metadata/dictionary/biomaterial/donor_organism", + "views": 0, + "change": -1.0 + }, + { + "page": "/metadata/dictionary/ontology/cell_cycle_ontology", + "views": 0, + "change": -1.0 + }, + { + "page": "/metadata/dictionary/ontology/target_pathway_ontology", + "views": 0, + "change": -1.0 + }, + { + "page": "/metadata/dictionary/protocol/biomaterial_collection/dissociation_protocol/", + "views": 0, + "change": -1.0 + }, + { + "page": "/pipelines/hca-pipelines/data-processing-pipelines/optimus-workflow/", + "views": 0, + "change": -1.0 + }, + { + "page": "/pipelines/optimus-workflow/", + "views": 0, + "change": -1.0 + }, + { + "page": "/pipelines/pipeline-processing-development-guides/", + "views": 0, + "change": -1.0 + }, + { + "page": "/production/heart/h5ad/HeartSingleCellsAndNucleiSeq.h5ad", + "views": 0, + "change": -1.0 + }, + { + "page": "/proiccts/e9f36305-d857-44a3-93 f0-df4e6007dc97/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/project-assets/project-metadata/cc95ff89-2e68-4a08-a234-480eca21ce79.tsv", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/008e40e8-66ae-43bb-951c-c073a2fa6774", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/01aacb68-4076-4fd9-9eb9-aba0f48c1b5a/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/032880e5-2b44-4bfb-8eef-25bb48e7453f/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/04ad400c-58cb-40a5-bc2b-2279e13a910b/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/04ad400c-58cb-40a5-bc2b-2279e13a910b/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/05657a59-9f9d-4bb9-b77b-24be13aa5cea/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/06c7dd8d-6cc6-4b79-b795-8805c47d36e1", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/07518430-7031-4bdf-a3ce-1bf0917a1923/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/07518430-7031-4bdf-a3ce-1bf0917a1923/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/07518430-7031-4bdf-a3ce-1bf0917a1923/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/07518430-7031-4bdf-a3ce-1bf0917a1923/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/0777b9ef - 91f3 - 468b - 9dea - db477437aa1a", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/07c1dcf7-8690-47e9-8534-011934d5686c", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/08c7910b-5ebb-4dfc-a866-5bf392ef3b36/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/08fb10df-32e5-456c-9882-e33fcd49077a/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/08fb10df-32e5-456c-9882-e33fcd49077a/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/08fb10df-32e5-456c-9882-e33fcd49077a/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/0c3b7785-f74d-4091-8616-a68757e4c2a8/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/0c3b7785-f74d-4091-8616-a68757e4c2a8/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/0c3b7785-f74d-4091-8616-a68757e4c2a8/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/116965f3-f094-4769-9d28-ae675c1b569c/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/116965f3-f094-4769-9d28-ae675c1b569c/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/135f7f5c-4a85-4bcf-9f7c-4f035ff1e428/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/1538d572-bcb7-426b-8d2c-84f3a7f87bb0/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/1538d572-bcb7-426b-8d2c-84f3a7f87bb0/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/1538d572-bcb7-426b-8d2c-84f3a7f87bb0/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/1688d7cc-6f5c-49ef-b353-e308b61d4e4c/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/1688d7cc-6f5c-49ef-b353-e308b61d4e4c/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/1688d7cc-6f5c-49ef-b353-e308b61d4e4c/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/16dc40f9-2c13-42e3-8cdf-251e95bfc043/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/16dc40f9-2c13-42e3-8cdf-251e95bfc043/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/16dc40f9-2c13-42e3-8cdf-251e95bfc043/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/18d4aae2-8363-4e00-8eeb-b9e568402cf8/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/18d4aae2-8363-4e00-8eeb-b9e568402cf8/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/18d4aae2-8363-4e00-8eeb-b9e568402cf8/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/19037ec9-43a7-4823-b93f-9e59c694d17e/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/19037ec9-43a7-4823-b93f-9e59c694d17e/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/1dd552a5-eb4f-4b92-8088-7224bcbd0629/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/1defdada-a365-44ad-9b29-443b06bd11d6/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/1defdada-a365-44ad-9b29-443b06bd11d6/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/1defdada-a365-44ad-9b29-443b06bd11d6/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/1eba4d0b-2d15-4ba7-bb3c-d4654dd94519/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2084526b-a66f-4c40-bb89-6fd162f2eb38", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2253ae59-4cc5-4bd2-b44e-ecb6d3fd7646/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2253ae59-4cc5-4bd2-b44e-ecb6d3fd7646/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2253ae59-4cc5-4bd2-b44e-ecb6d3fd7646/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2253ae59-4cc5-4bd2-b44e-ecb6d3fd7646/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/23509202-1e3c-4959-8a45-9c5b642a1066/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/23587fb3-1a4a-4f58-ad74-cc9a4cb4c254/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/258c5e15-d125-4f2d-8b4c-e3122548ec9b/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/258c5e15-d125-4f2d-8b4c-e3122548ec9b/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/272b7602-66cd-4b02-a86b-2b7c9c51a9ea/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/27e2e0ae-5971-4927-aac1-19e81804097b", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/27e2e0ae-5971-4927-aac1-19e81804097b/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/27e2e0ae-5971-4927-aac1-19e81804097b/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/27e2e0ae-5971-4927-aac1-19e81804097b/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2c041c26-f75a-495f-ab36-a076f89d422a/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2c041c26-f75a-495f-ab36-a076f89d422a/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2d4d89f2-ebeb-467c-ae60-a3efc5e8d4ba/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2d4d89f2-ebeb-467c-ae60-a3efc5e8d4ba/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2d4d89f2-ebeb-467c-ae60-a3efc5e8d4ba/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2d846095-8a33-4f3c-97d4-585bafac13b4/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2e40df1e-d3c2-48b4-8a17-c46e34d7be59/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2e40df1e-d3c2-48b4-8a17-c46e34d7be59/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2ef3655a-973d-4d69-9b41-21fa4041eed7/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2f676143-80c2-4bc6-b7b4-2613fe0fadf0/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/2f676143-80c2-4bc6-b7b4-2613fe0fadf0/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/34c9a62c-a610-4e31-b343-8fb7be676f8c/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/34c9a62c-a610-4e31-b343-8fb7be676f8c/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/34cba5e9-ecb1-4d81-bf08-48987cd63073/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/34cba5e9-ecb1-4d81-bf08-48987cd63073/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/34cba5e9-ecb1-4d81-bf08-48987cd63073/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/34cba5e9-ecb1-4d81-bf08-48987cd63073/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/3627473e-b6d6-45c9-87b5-b9f12ce57a10/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/379ed69e-be05-48bc-af5e-a7fc589709bf/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/38449aea-70b5-40db-84b3-1e08f32efe34/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/3a694703-3084-4ece-9abe-d935fd5f6748/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/3a694703-3084-4ece-9abe-d935fd5f6748/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/3bb95c61-630d-4970-ae40-8a951bd11cc1/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/40272c3b-4697-4bd4-ba3f-82fa96b9bf71/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/40272c3b-4697-4bd4-ba3f-82fa96b9bf71/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/4037007b-0eff-4e6d-b7bd-8dd8eec80143/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/40604447-14e4-4e55-ad22-1fd2d7eb4c68/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/40604447-14e4-4e55-ad22-1fd2d7eb4c68/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/40604447-14e4-4e55-ad22-1fd2d7eb4c68/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/40604447-14e4-4e55-ad22-1fd2d7eb4c68/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/415eb773-cadb-43d1-ab89-7d160d5cfc7d/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/415eb773-cadb-43d1-ab89-7d160d5cfc7d/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/425c2759-db66-4c93-a358-a562c069b1f1/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/4275b5c3-0141-46c6-b208-e3b3b61271c0", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/453d7ee2-319f-496c-9862-99d397870b63/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/457d0bfe-79e4-43f1-be5d-83bf080d809e/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/45c2c853-d06f-4879-957e-f1366fb5d423/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/474a4229-840e-4d63-82af-8d3aa615ee17/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/4bec484d-ca7a-47b4-8d48-8830e06ad6db/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/4bec484d-ca7a-47b4-8d48-8830e06ad6db/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/4bec484d-ca7a-47b4-8d48-8830e06ad6db/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/4c8e9d75-d85a-47de-9598-06549cf44b91/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/4f4f0193-ede8-4a82-8cb0-7a0a22f06e63/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/50151324-f3ed-4358-98af-ec352a940a61/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/50154d1e-2308-44bf-9608-10c7afaa560b/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/51f02950-ee25-4f4b-8d07-59aa99bb3498/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/52b29aa4-c8d6-42b4-807a-b35be94469ca/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/559bb888-7829-41f2-ace5-2c05c7eb81e9/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/559bb888-7829-41f2-ace5-2c05c7eb81e9/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/566d00b0-e1f8-4b92-9cbd-57de9fad0050/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/577c946d-6de5-4b55-a854-cd3fde40bff2/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/577c946d-6de5-4b55-a854-cd3fde40bff2/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/581de139-461f-4875-b408-56453a9082c7/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/591af954-cdcd-4839-96d3-a0d1b1e885ac/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/591af954-cdcd-4839-96d3-a0d1b1e885ac/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/5b328561-4a97-40ac-b7ad-6a90fc59d374", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/5b910a43-7fb5-4ea7-b9d6-43dbd1bf2776/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/5b910a43-7fb5-4ea7-b9d6-43dbd1bf2776/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/5b910a43-7fb5-4ea7-b9d6-43dbd1bf2776/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/5b910a43-7fb5-4ea7-b9d6-43dbd1bf2776/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/5bb1f67e-2ff0-4848-bbcf-17d133f0fd2d/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/5bb1f67e-2ff0-4848-bbcf-17d133f0fd2d/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/5bd01deb-01ee-4611-8efd-cf0ec5f56ac4/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/5bd01deb-01ee-4611-8efd-cf0ec5f56ac4/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/5f1a1aee-6c48-4dd4-a2c4-eb4ca6aadf74/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/5f1a1aee-6c48-4dd4-a2c4-eb4ca6aadf74/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6137c3f4-261f-4192-b32e-4827a77ff793/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6137c3f4-261f-4192-b32e-4827a77ff793/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6137c3f4-261f-4192-b32e-4827a77ff793/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/61515820-5bb8-45d0-8d12-f0850222ecf0/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/61515820-5bb8-45d0-8d12-f0850222ecf0/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/61515820-5bb8-45d0-8d12-f0850222ecf0/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/65858543-530d-48a6-a670-f972b34dfe10/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6601b3d4-ed5a-4e1f-b54a-e36adf45aa28/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6601b3d4-ed5a-4e1f-b54a-e36adf45aa28/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6663070f-fd8b-41a9-a479-2d1e07afa201/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6663070f-fd8b-41a9-a479-2d1e07afa201/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6663070f-fd8b-41a9-a479-2d1e07afa201/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/66d7d92a-d6c5-492c-815b-f81c7c93c984/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/66d7d92a-d6c5-492c-815b-f81c7c93c984/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/67a3de09-45b9-49c3-a068-ff4665daa50e/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6836c1e4-906b-4c34-a11c-cb025167896d/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6836c1e4-906b-4c34-a11c-cb025167896d/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/68df3629-d2d2-4eed-b0ab-a10e0f019b88/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/68df3629-d2d2-4eed-b0ab-a10e0f019b88/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/68df3629-d2d2-4eed-b0ab-a10e0f019b88/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6ac8e777-f9a0-4288-b5b0-446e8eba3078/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6ac8e777-f9a0-4288-b5b0-446e8eba3078/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6ac8e777-f9a0-4288-b5b0-446e8eba3078/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6c040a93-8cf8-4fd5-98de-2297eb07e9f6/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6e355e9c-1b8c-49ac-9a52-206141a0550f/files", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6f03e4ad-9305-4bfa-a5b6-929ffb1d94bd/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/71436067-ac41-4ace-be1b-2fbcc2cb02fa/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/73769e0a-5fcd-41f4-9083-41ae08bfa4c1/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/739ef78a-ba5d-4487-a013-9982db66d222/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/739ef78a-ba5d-4487-a013-9982db66d222/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/739ef78a-ba5d-4487-a013-9982db66d222/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/74493e98-44fc-48b0-a58f-cc7e77268b59", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/74e2ef9d-7c9f-418c-b281-7fb38f3b1571/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/74e2ef9d-7c9f-418c-b281-7fb38f3b1571/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/74e2ef9d-7c9f-418c-b281-7fb38f3b1571/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/77423e58-0fbb-495a-9ec2-bd9a8010f21d/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/77423e58-0fbb-495a-9ec2-bd9a8010f21d/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/77423e58-0fbb-495a-9ec2-bd9a8010f21d/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/783c9952-a4ae-4106-a6ce-56f20ce27f88/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/7880637a-35a1-4047-b422-b5eac2a2a358/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/7880637a-35a1-4047-b422-b5eac2a2a358/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/7880637a-35a1-4047-b422-b5eac2a2a358/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/7880637a-35a1-4047-b422-b5eac2a2a358/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/7b393e4d-65bc-4c03-b402-aae769299329/", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/7d368f4e-3b7a-452e-a8b9-1234567890ab", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/7f351a4c-d24c-4fcd-9040-f79071b097d0/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/7f351a4c-d24c-4fcd-9040-f79071b097d0/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/7f351a4c-d24c-4fcd-9040-f79071b097d0/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/7f9766ff-bb12-4279-b340-78d140bdd7ba/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/7f9766ff-bb12-4279-b340-78d140bdd7ba/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/8185730f-4113-40d3-9cc3-929271784c2b/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/83f5188e-3bf7-4956-9544-cea4f8997756/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/85c0d6fa-f117-4d76-b01a-5d5e8f5f9188/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/8a666b76-daaf-4b1f-9414-e4807a1d1e8b/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/8b954fb2-bccb-44c5-84e3-9f91e9189c40/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/8b9cb6ae-6a43-4e47-b9fb-3df7aeec941f/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/8c3c290d-dfff-4553-8868-54ce45f4ba7f/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/8c4e43fb-f7f3-4446-8367-a3fe9e0b8fd7/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/8c4e43fb-f7f3-4446-8367-a3fe9e0b8fd7/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/8c90c06b-7159-5a43-9c52-fb0b42b7d1b0/download", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/8d566d35-d8d3-4975-a351-be5e25e9b2ea/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/8d566d35-d8d3-4975-a351-be5e25e9b2ea/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/8dacb243-e918-4bd2-bb9a-aac6dc424161/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/8dadf21e-0a44-4fa3-aafc-7633b2a9eaa4/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/90588227-d8c1-47ee-a397-0d0b1d79aea9/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/90588227-d8c1-47ee-a397-0d0b1d79aea9/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/90588227-d8c1-47ee-a397-0d0b1d79aea9/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/91674dcf-8641-40e6-978d-c1706feffba8/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/91674dcf-8641-40e6-978d-c1706feffba8/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/91674dcf-8641-40e6-978d-c1706feffba8/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/91674dcf-8641-40e6-978d-c1706feffba8/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/925f9a4c-cac0-444a-ad2c-612656ab3a85/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/925f9a4c-cac0-444a-ad2c-612656ab3a85/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/925f9a4c-cac0-444a-ad2c-612656ab3a85/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/946c5add-47d1-402a-97bb-a5af97e8bce7/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9483c664-d546-4b30-9ba3-efbdbf9290b4/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9483c664-d546-4b30-9ba3-efbdbf9290b4/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9483c664-d546-4b30-9ba3-efbdbf9290b4/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9483c664-d546-4b30-9ba3-efbdbf9290b4/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/94e4ee09-9b4b-410a-84dc-a751ad36d0df/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/955dfc2c-a8c6-4d04-aa4d-907610545d11/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/95f07e6e-6a73-4e1b-a880-c83996b3aa5c/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/95f07e6e-6a73-4e1b-a880-c83996b3aa5c/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/962bd805-eb89-4c54-bad2-008e497d1307/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9833669b-d694-4b93-a3d0-6b6f9dbcfc10/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9833669b-d694-4b93-a3d0-6b6f9dbcfc10/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9833669b-d694-4b93-a3d0-6b6f9dbcfc10/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9833669b-d694-4b93-a3d0-6b6f9dbcfc10/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/99101928-d9b1-4aaf-b759-e97958ac7403/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9ac53858-606a-4b89-af49-804ccedaa660", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9ac53858-606a-4b89-af49-804ccedaa660/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9b876d31-0739-4e96-9846-f76e6a427279/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9c20a245-f2c0-", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9c20a245-f2c0- 43ae-82c9-2232ec6b594f", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9d97f01f-9313-416e-9b07-560f048b2350/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9d97f01f-9313-416e-9b07-560f048b2350/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9e83f571-966d-4f9f-a9ed-0d5c016ba81c", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9f7aa401-70e3-4695-951a-30541a1434eb/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9f7aa401-70e3-4695-951a-30541a1434eb/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/9f7aa401-70e3-4695-951a-30541a1434eb/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/a1312f9a-01ef-40a7-89bf-9091ca76a03a", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/a29952d9-925e-40f4-8a1c-274f118f1f51/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/a29952d9-925e-40f4-8a1c-274f118f1f51/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/a83b7f45-bfb1-4c6a-97e9-8e3370065cc1", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/a83b7f45-bfb1-4c6a-97e9-8e3370065cc1/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/a83b7f45-bfb1-4c6a-97e9-8e3370065cc1/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/a83b7f45-bfb1-4c6a-97e9-8e3370065cc1/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/a9c022b4-c771-4468-b769-cabcf9738de3/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/a9c022b4-c771-4468-b769-cabcf9738de3/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/a9f5323a-ce71-471c-9caf-04cc118fd1d7/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/a9f5323a-ce71-471c-9caf-04cc118fd1d7/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/a9f5323a-ce71-471c-9caf-04cc118fd1d7/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/abe1a013-af7a-45ed-8c26-f3793c24a1f4 https://science.sciencemag.org/content/365/6460/1461", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/abe1a013-af7a-45ed-8c26-f3793c24a1f4 https:/science.sciencemag.org/content/365/6460/1461", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/ac289b77-fb12-4a6b-ad43-c0721c698e70/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/ac289b77-fb12-4a6b-ad43-c0721c698e70/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/aca93e28-7d87-4aa4-b8ae-498b9b235f46/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/aca93e28-7d87-4aa4-b8ae-498b9b235f46/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/ad04c8e7-9b7d-4cce-b8e9-01e31da10b94/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/ad04c8e7-9b7d-4cce-b8e9-01e31da10b94/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/ae71be1d-ddd8-4feb-9bed-24c3ddb6e1ad 22", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/ae71be1d-ddd8-4feb-9bed-24c3ddb6e1ad/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/ae9f439b-bd47-4d6e-bd72-32dc70b35d97/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/aecfd908-674c-4d4e-b36e-0c1ceab02245/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/aecfd908-674c-4d4e-b36e-0c1ceab02245/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/aecfd908-674c-4d4e-b36e-0c1ceab02245/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/aecfd908-674c-4d4e-b36e-0c1ceab02245/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/aefb9192-43fc-46d7-a4c1-29597f7ef61b/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/aefb9192-43fc-46d7-a4c1-29597f7ef61b/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/b176d756-62d8-4933-83a4-8b026380262f/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/b4a7d12f-6c2d-4e03-a962-21b50e74c7d6", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/b51f49b4-0d2e-4cbd-bbd5-04cd171fc2fa/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/b9484e4e-dc40-4e38-9b85-4cecf5b8c068", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/b963bd4b-4bc1-4404-8425-69d74bc636b8/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/b963bd4b-4bc1-4404-8425-69d74bc636b8/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/b963bd4b-4bc1-4404-8425-69d74bc636b8/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/bba2f908-e0cb-4ee7-b007-f9c650e08be0/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/bba2f908-e0cb-4ee7-b007-f9c650e08be0/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/bba2f908-e0cb-4ee7-b007-f9c650e08be0/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/bba2f908-e0cb-4ee7-b007-f9c650e08be0/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/bc5512cc-9544-4aa4-8b75-8af445ee2257/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/bd400331-54b9-4fcc-bff6-6bb8b079ee1f/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/be010abc-fb68-4581-b61f-7dd7c3d7b044/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c1a9a93d-d9de-4e65-9619-a9cec1052eaa/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c302fe54-d22d-451f-a130-e24df3d6afca/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c302fe54-d22d-451f-a130-e24df3d6afca/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c5b475f2-76b3-4a8e-8465-f3b69828fec3/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c5b475f2-76b3-4a8e-8465-f3b69828fec3/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c5b475f2-76b3-4a8e-8465-f3b69828fec3/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c5ca43aa-3b2b-4216-8eb3-f57adcbc99a1/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c6ad8f9b-d26a-4811-b2ba-93d487978446/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c6ad8f9b-d26a-4811-b2ba-93d487978446/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c844538b-8854-4a95-bd01-aacbaf86d97f/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c844538b-8854-4a95-bd01-aacbaf86d97f/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c893cb57-5c9f-4f26-9312-21b85be84313/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c8e6c5d9-fcde-4845-bead-ff96999e3051/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c8e6c5d9-fcde-4845-bead-ff96999e3051/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/c9e83418-a9f0-4ed1-ab4f-56d9513417bf/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/cc95678f-589e-4678-9875-8d558998114e", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/cc95ff89-", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/cc95ff89-2e68-4a08a234-480eca21ce79", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/cfece4d2-fl8d-44ad-a46a-42bbcb5cb3b7/get-cul-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/d3446f0c-30f3-4a12-b7c3-6af877c7bb2d/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/d3446f0c-30f3-4a12-b7c3-6af877c7bb2d/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/d3446f0c-30f3-4a12-b7c3-6af877c7bb2d/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/d3ac7c1b-5302-4804-b611-dad9f89c049d/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/d3ac7c1b-5302-4804-b611-dad9f89c049d/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/d3ac7c1b-5302-4804-b611-dad9f89c049d/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/d3ac7c1b-5302-4804-b611-dad9f89c049d/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/d5c91e92-2e7f-473d-8cf3-ab03bbae21c2/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/d7845650-f6b1-4b1c-b2fe-c0795416ba7b/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/dc1a41f6-9e09-42a6-959e-3be23db6da56", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/dcbb50d1-9acf-4f70-9fda-b1f63a948c49/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/dcbb50d1-9acf-4f70-9fda-b1f63a948c49/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/e456c042-f6b6-4cec-a338-1a8ef80bd779", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/e4b18cd2-8f15-490d-b9f1-d118aa067dc3/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/e6773550-c1a6-4949-8643-1a3154cf2670/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/e8808cc8-4ca0-4096-80f2-bba73600cba6", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/ea9f4ea7-d7b3-41e7-b23a-43f95f569074/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/ede2e0b4-6652-464f-abbc-0b2d964a25a0/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/ef36305d-8574-4a3f-0f4de6007dc97", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/f3825dfe-990a-431f-b971-9c26d39840db/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/f77290ae-0d7b-4239-b0fe-3cf2c9e8858d/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/f8aa201c-4ff1-45a4-890e-840d63459ca2 https://www.sciencedirect.com/science/article/pii/S0092867418311681", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/f8aa201c-4ff1-45a4-890e-840d63459ca2 https:/www.sciencedirect.com/science/article/pii/S0092867418311681", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/f9aa4a6a-82e7-4780-88ef-a384e5907c08", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/faeedcb0-e046-4be7-b1ad-80a3eeabb066/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/fc381e70-df1b-407d-8131-52ab523270bd/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/fc381e70-df1b-407d-8131-52ab523270bd/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/fc381e70-df1b-407d-8131-52ab523270bd/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/fc381e70-df1b-407d-8131-52ab523270bd/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/fccd3f50-cde2-47bf-8972-a293b5928aea/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/fccd3f50-cde2-47bf-8972-a293b5928aea/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/fccd3f50-cde2-47bf-8972-a293b5928aea/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/fccd3f50-cde2-47bf-8972-a293b5928aea/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/fed95462-3420-44fb-8b9d-2efbffb35479/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/fed95462-3420-44fb-8b9d-2efbffb35479/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/fed95462-3420-44fb-8b9d-2efbffb35479/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/https:/explore.data.humancellatlas.org/projects/403c3e76-6814-4a2d-a580-5dd5de38c7ff", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/https:/explore.data.humancellatlas.org/projects/88ec040b-8705-4f77-8f41-f81e57632f7d", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/https:/explore.data.humancellatlas.org/projects/ae62bb31-55ca-4127-b0fb-b1771a604645", + "views": 0, + "change": -1.0 + } +] \ No newline at end of file diff --git a/gh-pages/hca-explorer/index.html b/gh-pages/hca-explorer/index.html new file mode 100644 index 000000000..3bb37cd79 --- /dev/null +++ b/gh-pages/hca-explorer/index.html @@ -0,0 +1,858 @@ + + + + + + Analytics + + + + + + + +
+ +
+
+
+ +
+
+

Analytics

+

Loading...

+
+ +
+
+
+

Loading statistics...

+
+
+
+ +
+
+
+

Monthly Traffic Over Time

+
+
+
+
+ +
+
+
+ +
+
+

Monthly Pageviews

+
+
+
+
+ +
+
+
+
+ + + + + +
+
+ + + + + + + + +

General Usage

+ +
+
+

Top Pages

+
+
+
+ + + + + + + + + + + +
PageViewsChange
Loading...
+
+
+ +
+
+

Top Outbound Links

+
+
+
+ + + + + + + + + + + +
LinkClicksChange
Loading...
+
+
+ +
+
+

Filter Selections

+
+
+
+ + + + + + + + + + + + +
Filter NameFilter ValueCountChange
Loading...
+
+
+ +

+ Data sourced from Google Analytics | Generated - +

+
+ + + + diff --git a/gh-pages/index.html b/gh-pages/index.html new file mode 100644 index 000000000..92afdfb7d --- /dev/null +++ b/gh-pages/index.html @@ -0,0 +1,16 @@ + + + + + + Data Browser Analytics + + +

Data Browser Analytics

+ + + diff --git a/gh-pages/lungmap/data/config.json b/gh-pages/lungmap/data/config.json new file mode 100644 index 000000000..b4eb7f7c4 --- /dev/null +++ b/gh-pages/lungmap/data/config.json @@ -0,0 +1,53 @@ +{ + "site_title": "LungMAP User Analytics", + "logo_url": "https://data-browser.lungmap.net/images/logoLungmap.png", + "favicon_url": "https://data-browser.lungmap.net/favicons/favicon.ico", + "logo_link": "https://data-browser.lungmap.net", + "primary_color": "#4B7D8E", + "primary_color_dark": "#3A6270", + "summary_stats": [ + { + "label": "Cohort Export Requests", + "event_keys": [ + "index_bulk_download_requested", + "index_file_manifest_requested", + "index_analyze_in_terra_requested" + ] + }, + { + "label": "Project Export Requests", + "event_keys": [ + "dataset_bulk_download_requested", + "dataset_file_manifest_requested", + "dataset_analyze_in_terra_requested" + ] + } + ], + "file_downloads_position": 3, + "event_counts": [ + { + "label": "Export to Terra\n(Single Project)", + "event_key": "dataset_analyze_in_terra_requested" + }, + { + "label": "Export to Terra\n(Cross-Dataset)", + "event_key": "index_analyze_in_terra_requested" + }, + { + "label": "curl Command\n(Single Project)", + "event_key": "dataset_bulk_download_requested" + }, + { + "label": "curl Command\n(Cross-Dataset)", + "event_key": "index_bulk_download_requested" + }, + { + "label": "File Manifest\n(Single Project)", + "event_key": "dataset_file_manifest_requested" + }, + { + "label": "File Manifest\n(Cross-Dataset)", + "event_key": "index_file_manifest_requested" + } + ] +} \ No newline at end of file diff --git a/gh-pages/lungmap/data/custom_events.json b/gh-pages/lungmap/data/custom_events.json new file mode 100644 index 000000000..1e2fd7fac --- /dev/null +++ b/gh-pages/lungmap/data/custom_events.json @@ -0,0 +1,51 @@ +[ + { + "event_name": "filter_selected", + "label": "Filter Selections", + "current": 18, + "prior": 23, + "change": -0.21739130434782608 + }, + { + "event_name": "index_bulk_download_requested", + "label": "Cohort curl Download Requests", + "current": 0, + "prior": 0, + "change": null + }, + { + "event_name": "index_file_manifest_requested", + "label": "Cohort File Manifest Requests", + "current": 1, + "prior": 0, + "change": null + }, + { + "event_name": "index_analyze_in_terra_requested", + "label": "Cohort Analyze in Terra Requests", + "current": 5, + "prior": 1, + "change": 4.0 + }, + { + "event_name": "dataset_analyze_in_terra_requested", + "label": "Project Analyze in Terra Requests", + "current": 1, + "prior": 0, + "change": null + }, + { + "event_name": "dataset_bulk_download_requested", + "label": "Project curl Download Requests", + "current": 20, + "prior": 11, + "change": 0.8181818181818182 + }, + { + "event_name": "dataset_file_manifest_requested", + "label": "Project File Manifest Requests", + "current": 2, + "prior": 0, + "change": null + } +] \ No newline at end of file diff --git a/gh-pages/lungmap/data/event_dataset_analyze_in_terra_requested_detail.json b/gh-pages/lungmap/data/event_dataset_analyze_in_terra_requested_detail.json new file mode 100644 index 000000000..a1d904425 --- /dev/null +++ b/gh-pages/lungmap/data/event_dataset_analyze_in_terra_requested_detail.json @@ -0,0 +1,8 @@ +[ + { + "page_path": "/projects/9393acbf-e8d8-4b96-9c71-996e245e5f23/export-to-terra", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Bronchopulmonary dysplasia (BPD) with pulmonary hypertension associates with semaphorin signaling loss and functionally decreased FOXF1 expression" + } +] \ No newline at end of file diff --git a/gh-pages/lungmap/data/event_dataset_bulk_download_requested_detail.json b/gh-pages/lungmap/data/event_dataset_bulk_download_requested_detail.json new file mode 100644 index 000000000..4f54de49b --- /dev/null +++ b/gh-pages/lungmap/data/event_dataset_bulk_download_requested_detail.json @@ -0,0 +1,50 @@ +[ + { + "page_path": "/projects/1bdcecde-16be-4208-88f4-78cd2133d11d/get-curl-command", + "entity_name": "(not set)", + "count": 12, + "dataset_title": "Guided construction of a single cell reference (CellRef) for mouse lung" + }, + { + "page_path": "/projects/00f056f2-73ff-43ac-97ff-69ca10e38c89/get-curl-command", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Genomic, epigenomic, and biophysical cues controlling the emergence of the lung alveolus" + }, + { + "page_path": "/projects/1977dc47-8414-4263-a870-6b0f207d8ab3/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Bronchpulmonary Dysplasia (BPD)" + }, + { + "page_path": "/projects/6135382f-487d-4adb-9cf8-4d6634125b68/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Human Lung Reference Cell Atlas version 1.0" + }, + { + "page_path": "/projects/9393acbf-e8d8-4b96-9c71-996e245e5f23/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Bronchopulmonary dysplasia (BPD) with pulmonary hypertension associates with semaphorin signaling loss and functionally decreased FOXF1 expression" + }, + { + "page_path": "/projects/e68d2111-316f-4ded-bf49-0ab332488665/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Human postnatal sorted lung bulk RNA-Seq across postnatal development" + }, + { + "page_path": "/projects/e99faee2-7706-4c1a-9d28-76c68320f549/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Lung Spatial Xenium Pilot of Control Segmental Bronchus with Bronchpulmonary Dysplasia (BPD) Sample" + }, + { + "page_path": "/projects/fdadee7e-2097-45d5-bf81-cc280bd8348e/get-curl-command", + "entity_name": "(not set)", + "count": 1, + "dataset_title": "Alveolar capillary dysplasia with misalignment of the pulmonary veins (ACDMPV)" + } +] \ No newline at end of file diff --git a/gh-pages/lungmap/data/event_dataset_file_manifest_requested_detail.json b/gh-pages/lungmap/data/event_dataset_file_manifest_requested_detail.json new file mode 100644 index 000000000..8d7e7d009 --- /dev/null +++ b/gh-pages/lungmap/data/event_dataset_file_manifest_requested_detail.json @@ -0,0 +1,8 @@ +[ + { + "page_path": "/projects/9393acbf-e8d8-4b96-9c71-996e245e5f23/project-metadata", + "entity_name": "(not set)", + "count": 2, + "dataset_title": "Bronchopulmonary dysplasia (BPD) with pulmonary hypertension associates with semaphorin signaling loss and functionally decreased FOXF1 expression" + } +] \ No newline at end of file diff --git a/gh-pages/lungmap/data/file_downloads.json b/gh-pages/lungmap/data/file_downloads.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/gh-pages/lungmap/data/file_downloads.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/gh-pages/lungmap/data/filter_selected.json b/gh-pages/lungmap/data/filter_selected.json new file mode 100644 index 000000000..b2c8c34e1 --- /dev/null +++ b/gh-pages/lungmap/data/filter_selected.json @@ -0,0 +1,164 @@ +[ + { + "filterName": "genusSpecies", + "filterValue": "Mus musculus", + "count": 3, + "change": -0.32258064516129037 + }, + { + "filterName": "specimenOrgan", + "filterValue": "Lung", + "count": 2, + "change": 0.8064516129032258 + }, + { + "filterName": "workflow", + "filterValue": "059d737a-5c42-457e-84d2-d12f384a1bd5", + "count": 2, + "change": null + }, + { + "filterName": "contactName", + "filterValue": "Edward E Morrisey", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "contactName", + "filterValue": "Edward E. Morrisey", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "developmentStage", + "filterValue": "embryonic day 18.5", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "chronic obstructive pulmonary disease", + "count": 1, + "change": null + }, + { + "filterName": "donorDisease", + "filterValue": "idiopathic pulmonary fibrosis", + "count": 1, + "change": null + }, + { + "filterName": "fileFormat", + "filterValue": "h5ad", + "count": 1, + "change": null + }, + { + "filterName": "fileFormat", + "filterValue": "xlsx", + "count": 1, + "change": null + }, + { + "filterName": "genusSpecies", + "filterValue": "Homo sapiens", + "count": 1, + "change": -0.09677419354838712 + }, + { + "filterName": "institution", + "filterValue": "University of Rochester", + "count": 1, + "change": null + }, + { + "filterName": "institution", + "filterValue": "University of Rochester Medical Center", + "count": 1, + "change": null + }, + { + "filterName": "workflow", + "filterValue": "90816808-a5f4-4d50-927f-b3f148c891ae", + "count": 1, + "change": null + }, + { + "filterName": "developmentStage", + "filterValue": "adolescent stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "human adult stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "infant stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "developmentStage", + "filterValue": "newborn human stage", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "bronchopulmonary dysplasia", + "count": 0, + "change": -1.0 + }, + { + "filterName": "donorDisease", + "filterValue": "normal", + "count": 0, + "change": -1.0 + }, + { + "filterName": "fileFormat", + "filterValue": "fastq", + "count": 0, + "change": -1.0 + }, + { + "filterName": "fileFormat", + "filterValue": "fastq.gz", + "count": 0, + "change": -1.0 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x 3' v3", + "count": 0, + "change": -1.0 + }, + { + "filterName": "libraryConstructionApproach", + "filterValue": "10x scATAC-seq", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Bronchopulmonary dysplasia (BPD) with pulmonary hypertension associates with semaphorin signaling lo", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Bronchpulmonary Dysplasia (BPD)", + "count": 0, + "change": -1.0 + }, + { + "filterName": "projectTitle", + "filterValue": "Single-cell multiomic profiling of human lungs reveals cell-type-specific and age-dynamic control of", + "count": 0, + "change": -1.0 + } +] \ No newline at end of file diff --git a/gh-pages/lungmap/data/meta.json b/gh-pages/lungmap/data/meta.json new file mode 100644 index 000000000..c87a777c3 --- /dev/null +++ b/gh-pages/lungmap/data/meta.json @@ -0,0 +1,17 @@ +{ + "generated_at": "2026-04-29 09:47:08", + "current_month": "2026-03", + "current_month_start": "2026-03-01", + "current_month_end": "2026-03-31", + "prior_month_start": "2026-02-01", + "prior_month_end": "2026-02-28", + "analytics_start": "2023-07-01", + "sessions": { + "current": 312, + "prior": 314 + }, + "engagement_rate": { + "current": 0.4967948717948718, + "prior": 0.5095541401273885 + } +} \ No newline at end of file diff --git a/gh-pages/lungmap/data/monthly_traffic.json b/gh-pages/lungmap/data/monthly_traffic.json new file mode 100644 index 000000000..30f04bd20 --- /dev/null +++ b/gh-pages/lungmap/data/monthly_traffic.json @@ -0,0 +1,272 @@ +[ + { + "month": "2026-03", + "users": 197, + "pageviews": 769 + }, + { + "month": "2026-02", + "users": 225, + "pageviews": 769 + }, + { + "month": "2026-01", + "users": 224, + "pageviews": 962 + }, + { + "month": "2025-12", + "users": 221, + "pageviews": 713 + }, + { + "month": "2025-11", + "users": 252, + "pageviews": 958 + }, + { + "month": "2025-10", + "users": 320, + "pageviews": 1300 + }, + { + "month": "2025-09", + "users": 160, + "pageviews": 706 + }, + { + "month": "2025-08", + "users": 117, + "pageviews": 610 + }, + { + "month": "2025-07", + "users": 142, + "pageviews": 1016 + }, + { + "month": "2025-06", + "users": 125, + "pageviews": 630 + }, + { + "month": "2025-05", + "users": 175, + "pageviews": 580 + }, + { + "month": "2025-04", + "users": 138, + "pageviews": 527 + }, + { + "month": "2025-03", + "users": 176, + "pageviews": 572 + }, + { + "month": "2025-02", + "users": 133, + "pageviews": 588 + }, + { + "month": "2025-01", + "users": 83, + "pageviews": 347 + }, + { + "month": "2024-12", + "users": 104, + "pageviews": 567 + }, + { + "month": "2024-11", + "users": 105, + "pageviews": 432 + }, + { + "month": "2024-10", + "users": 130, + "pageviews": 717 + }, + { + "month": "2024-09", + "users": 92, + "pageviews": 623 + }, + { + "month": "2024-08", + "users": 110, + "pageviews": 653 + }, + { + "month": "2024-07", + "users": 63, + "pageviews": 411 + }, + { + "month": "2024-02", + "users": 96, + "pageviews": 350 + }, + { + "month": "2024-01", + "users": 220, + "pageviews": 918 + }, + { + "month": "2023-12", + "users": 156, + "pageviews": 768 + }, + { + "month": "2023-11", + "users": 184, + "pageviews": 872 + }, + { + "month": "2023-10", + "users": 180, + "pageviews": 970 + }, + { + "month": "2023-09", + "users": 163, + "pageviews": 744 + }, + { + "month": "2023-08", + "users": 208, + "pageviews": 997 + }, + { + "month": "2023-07", + "users": 143, + "pageviews": 657 + }, + { + "month": "2023-06", + "users": 125, + "pageviews": 493 + }, + { + "month": "2023-05", + "users": 186, + "pageviews": 1115 + }, + { + "month": "2023-04", + "users": 129, + "pageviews": 679 + }, + { + "month": "2023-03", + "users": 165, + "pageviews": 929 + }, + { + "month": "2023-02", + "users": 139, + "pageviews": 725 + }, + { + "month": "2023-01", + "users": 100, + "pageviews": 540 + }, + { + "month": "2022-12", + "users": 72, + "pageviews": 444 + }, + { + "month": "2022-11", + "users": 98, + "pageviews": 559 + }, + { + "month": "2022-10", + "users": 37, + "pageviews": 230 + }, + { + "month": "2022-09", + "users": 18, + "pageviews": 121 + }, + { + "month": "2022-08", + "users": 12, + "pageviews": 38 + }, + { + "month": "2022-07", + "users": 10, + "pageviews": 29 + }, + { + "month": "2022-06", + "users": 12, + "pageviews": 39 + }, + { + "month": "2022-05", + "users": 10, + "pageviews": 32 + }, + { + "month": "2022-04", + "users": 9, + "pageviews": 120 + }, + { + "month": "2022-03", + "users": 8, + "pageviews": 35 + }, + { + "month": "2022-02", + "users": 9, + "pageviews": 24 + }, + { + "month": "2022-01", + "users": 10, + "pageviews": 86 + }, + { + "month": "2021-12", + "users": 12, + "pageviews": 36 + }, + { + "month": "2021-11", + "users": 14, + "pageviews": 44 + }, + { + "month": "2021-10", + "users": 6, + "pageviews": 26 + }, + { + "month": "2021-09", + "users": 1, + "pageviews": 19 + }, + { + "month": "2021-08", + "users": 1, + "pageviews": 3 + }, + { + "month": "2021-07", + "users": 3, + "pageviews": 32 + }, + { + "month": "2021-06", + "users": 0, + "pageviews": 0 + } +] \ No newline at end of file diff --git a/gh-pages/lungmap/data/outbound_links.json b/gh-pages/lungmap/data/outbound_links.json new file mode 100644 index 000000000..f67d8bf0e --- /dev/null +++ b/gh-pages/lungmap/data/outbound_links.json @@ -0,0 +1,127 @@ +[ + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/43bd8c1f-6b5", + "clicks": 4, + "change": null + }, + { + "link": "https://www.nature.com/articles/s41467-018-07770-1", + "clicks": 4, + "change": 0.20430107526881724 + }, + { + "link": "https://www.nature.com/articles/s41586-022-04552-0", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE149563", + "clicks": 3, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE122332", + "clicks": 3, + "change": -0.09677419354838712 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2022.05.18.491687v1.full", + "clicks": 2, + "change": -0.3978494623655914 + }, + { + "link": "https://www.biorxiv.org/content/10.1101/2022.05.18.491687v1", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://identifiers.org/geo:GSE161383", + "clicks": 2, + "change": 0.8064516129032258 + }, + { + "link": "https://service.azul.data.humancellatlas.org/", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/f7b0f238-0e3", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://storage.googleapis.com/datarepo-059e1ba9-bucket/b6008916-c2a4-4ba6-afea-a6a88e24d104/23e62cd", + "clicks": 1, + "change": null + }, + { + "link": "https://singlecell.broadinstitute.org/single_cell/study/SCP1157/bronchiolitis-obliterans-syndrome-lu", + "clicks": 1, + "change": null + }, + { + "link": "https://identifiers.org/geo:GSE227136", + "clicks": 1, + "change": -0.09677419354838712 + }, + { + "link": "https://identifiers.org/geo:GSE275938", + "clicks": 1, + "change": null + }, + { + "link": "https://app.terra.bio/#import-data?format=PFB&url=https%3A%2F%2Fs3.amazonaws.com%2Fedu-ucsc-gi-platf", + "clicks": 1, + "change": null + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/c629256c-330", + "clicks": 1, + "change": null + }, + { + "link": "https://science.sciencemag.org/content/371/6534/eabc3172.long", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://lungmap.net/resources/data-access-policy", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/3a1fc2c0-052", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/39818203/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://pubmed.ncbi.nlm.nih.gov/38548990/", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://storage.googleapis.com/datarepo-fe8f7d1e-bucket/fe0baecc-1551-4439-a5c5-bf366ed3eb75/d735086", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://s3.amazonaws.com/edu-ucsc-gi-platform-hca-prod-storage-prod.us-east-1/manifests/34f756bb-a37", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://identifiers.org/geo:GSE168191", + "clicks": 0, + "change": -1.0 + }, + { + "link": "https://www.atsjournals.org/doi/10.1164/rccm.202210-2015OC", + "clicks": 0, + "change": -1.0 + } +] \ No newline at end of file diff --git a/gh-pages/lungmap/data/pageviews.json b/gh-pages/lungmap/data/pageviews.json new file mode 100644 index 000000000..b475afe5e --- /dev/null +++ b/gh-pages/lungmap/data/pageviews.json @@ -0,0 +1,502 @@ +[ + { + "page": "/projects", + "views": 166, + "change": -0.3215588965114582 + }, + { + "page": "/projects/1977dc47-8414-4263-a870-6b0f207d8ab3", + "views": 79, + "change": 0.9820788530465951 + }, + { + "page": "/projects/6135382f-487d-4adb-9cf8-4d6634125b68", + "views": 43, + "change": -0.07526881720430112 + }, + { + "page": "/projects/1bdcecde-16be-4208-88f4-78cd2133d11d", + "views": 42, + "change": -0.09677419354838712 + }, + { + "page": "/", + "views": 34, + "change": -0.5674693321217629 + }, + { + "page": "/projects/1bdcecde-16be-4208-88f4-78cd2133d11d/get-curl-command", + "views": 24, + "change": 0.8064516129032258 + }, + { + "page": "/projects/1977dc47-8414-4263-a870-6b0f207d8ab3/project-metadata", + "views": 23, + "change": 1.0774193548387099 + }, + { + "page": "/projects/1977dc47-8414-4263-a870-6b0f207d8ab3/get-curl-command", + "views": 22, + "change": 2.311827956989247 + }, + { + "page": "/projects/9393acbf-e8d8-4b96-9c71-996e245e5f23", + "views": 21, + "change": 0.05376344086021523 + }, + { + "page": "/projects/1977dc47-8414-4263-a870-6b0f207d8ab3/project-matrices", + "views": 19, + "change": 3.290322580645161 + }, + { + "page": "/projects/f899709c-ae2c-4bb9-88f0-131142e6c7ec", + "views": 16, + "change": -0.37166900420757365 + }, + { + "page": "/projects/1977dc47-8414-4263-a870-6b0f207d8ab3/export-to-terra", + "views": 14, + "change": 3.21505376344086 + }, + { + "page": "/projects/1bdcecde-16be-4208-88f4-78cd2133d11d/project-matrices", + "views": 14, + "change": 0.5806451612903225 + }, + { + "page": "/projects/fdadee7e-2097-45d5-bf81-cc280bd8348e", + "views": 12, + "change": -0.22580645161290325 + }, + { + "page": "/projects/00f056f2-73ff-43ac-97ff-69ca10e38c89", + "views": 11, + "change": 0.10394265232974909 + }, + { + "page": "/projects/9393acbf-e8d8-4b96-9c71-996e245e5f23/project-metadata", + "views": 11, + "change": 2.311827956989247 + }, + { + "page": "/projects/e651ac3e-03aa-46fa-9ed3-70c6fda4e440", + "views": 11, + "change": 0.24193548387096775 + }, + { + "page": "/projects/1bdcecde-16be-4208-88f4-78cd2133d11d/project-metadata", + "views": 10, + "change": 0.0035842293906811484 + }, + { + "page": "/samples", + "views": 8, + "change": 0.032258064516129004 + }, + { + "page": "/projects/0e2b2441-92a5-424c-bce1-abc13435686f", + "views": 8, + "change": -0.343108504398827 + }, + { + "page": "/projects/1bdcecde-16be-4208-88f4-78cd2133d11d/export-to-terra", + "views": 8, + "change": 0.4451612903225808 + }, + { + "page": "/projects/20037472-ea1d-4ddb-9cd3-56a11a6f0f76", + "views": 8, + "change": 0.20430107526881724 + }, + { + "page": "/projects/5134c97d-bbdb-4d9d-b483-cdebeaf667b3", + "views": 7, + "change": -0.09677419354838712 + }, + { + "page": "/projects/6135382f-487d-4adb-9cf8-4d6634125b68/get-curl-command", + "views": 7, + "change": -0.5136476426799007 + }, + { + "page": "/projects/6135382f-487d-4adb-9cf8-4d6634125b68/project-matrices", + "views": 7, + "change": -0.4252199413489737 + }, + { + "page": "/projects/6135382f-487d-4adb-9cf8-4d6634125b68/project-metadata", + "views": 7, + "change": -0.3677419354838709 + }, + { + "page": "/projects/0e2b2441-92a5-424c-bce1-abc13435686f/project-metadata", + "views": 7, + "change": 5.32258064516129 + }, + { + "page": "/export", + "views": 6, + "change": 0.08387096774193559 + }, + { + "page": "/projects/9393acbf-e8d8-4b96-9c71-996e245e5f23/export-to-terra", + "views": 6, + "change": 0.8064516129032258 + }, + { + "page": "/projects/e651ac3e-03aa-46fa-9ed3-70c6fda4e440/get-curl-command", + "views": 6, + "change": 1.7096774193548385 + }, + { + "page": "/files", + "views": 5, + "change": -0.5894428152492669 + }, + { + "page": "/projects/f899709c-ae2c-4bb9-88f0-131142e6c7ec/project-metadata", + "views": 5, + "change": 0.5053763440860215 + }, + { + "page": "/projects/4fb36692-6240-4146-a7e6-54543543230c", + "views": 4, + "change": -0.6387096774193548 + }, + { + "page": "/projects/26204979-55a3-49b2-8d2b-53e0bdfcb176", + "views": 4, + "change": 0.20430107526881724 + }, + { + "page": "/projects/9393acbf-e8d8-4b96-9c71-996e245e5f23/get-curl-command", + "views": 4, + "change": -0.09677419354838712 + }, + { + "page": "/projects/00f056f2-73ff-43ac-97ff-69ca10e38c89/get-curl-command", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/e651ac3e-03aa-46fa-9ed3-70c6fda4e440/project-metadata", + "views": 4, + "change": 0.8064516129032258 + }, + { + "page": "/projects/e99faee2-7706-4c1a-9d28-76c68320f549", + "views": 4, + "change": -0.2774193548387096 + }, + { + "page": "/projects/0e2b2441-92a5-424c-bce1-abc13435686f/export-to-terra", + "views": 4, + "change": 2.6129032258064515 + }, + { + "page": "/projects/4ae8c5c9-1520-4371-9827-6935661f6c84/project-metadata", + "views": 4, + "change": null + }, + { + "page": "/projects/00f056f2-73ff-43ac-97ff-69ca10e38c89/project-matrices", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/00f056f2-73ff-43ac-97ff-69ca10e38c89/project-metadata", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/4ae8c5c9-1520-4371-9827-6935661f6c84", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/ccea5717-a848-4c06-8d2d-d1b694e89441", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/780514ad-4c1e-40a8-9034-2ee7ec447dcb", + "views": 3, + "change": -0.4580645161290322 + }, + { + "page": "/projects/e651ac3e-03aa-46fa-9ed3-70c6fda4e440/project-matrices", + "views": 3, + "change": 1.7096774193548385 + }, + { + "page": "/projects/3a02d15f-9c6a-4ef7-852b-4ddec733b70b", + "views": 3, + "change": null + }, + { + "page": "/export/download-manifest", + "views": 2, + "change": null + }, + { + "page": "/export/get-curl-command", + "views": 2, + "change": null + }, + { + "page": "/projects/6135382f-487d-4adb-9cf8-4d6634125b68/export-to-terra", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/9393acbf-e8d8-4b96-9c71-996e245e5f23/project-matrices", + "views": 2, + "change": -0.6989247311827957 + }, + { + "page": "/projects/MTk3N2RjND", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/00f056f2-73ff-43ac-97ff-69ca10e38c89/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/0229ea32-ef02-489e-b11e-ff15819e22c1", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/0e2b2441-92a5-424c-bce1-abc13435686f/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/e651ac3e-03aa-46fa-9ed3-70c6fda4e440/export-to-terra", + "views": 2, + "change": null + }, + { + "page": "/projects/e68d2111-316f-4ded-bf49-0ab332488665", + "views": 2, + "change": -0.5483870967741935 + }, + { + "page": "/projects/e99faee2-7706-4c1a-9d28-76c68320f549/get-curl-command", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/projects/e99faee2-7706-4c1a-9d28-76c68320f549/project-metadata", + "views": 2, + "change": 0.8064516129032258 + }, + { + "page": "/apis", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/export/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/metadata", + "views": 1, + "change": -0.5483870967741935 + }, + { + "page": "/projects/0229ea32-ef02-489e-b11e-ff15819e22c1/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/0229ea32-ef02-489e-b11e-ff15819e22c1/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/0229ea32-ef02-489e-b11e-ff15819e22c1/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/0e2b2441-92a5-424c-bce1-abc13435686f/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/20037472-ea1d-4ddb-9cd3-56a11a6f0f76/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/4c40f6e7-b9f5-4528-8e2d-d1129014cec8", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/5134c97d-bbdb-4d9d-b483-cdebeaf667b3/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/5134c97d-bbdb-4d9d-b483-cdebeaf667b3/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/5134c97d-bbdb-4d9d-b483-cdebeaf667b3/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/780514ad-4c1e-40a8-9034-2ee7ec447dcb/project-metadata", + "views": 1, + "change": null + }, + { + "page": "/projects/834e0d16-71b6-4425-a8ab-022b5000961c", + "views": 1, + "change": -0.8193548387096774 + }, + { + "page": "/projects/MDIyOWVhMz", + "views": 1, + "change": null + }, + { + "page": "/projects/NjEzNTM4Mm", + "views": 1, + "change": null + }, + { + "page": "/projects/e68d2111-316f-4ded-bf49-0ab332488665/get-curl-command", + "views": 1, + "change": null + }, + { + "page": "/projects/e99faee2-7706-4c1a-9d28-76c68320f549/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/e99faee2-7706-4c1a-9d28-76c68320f549/project-matrices", + "views": 1, + "change": null + }, + { + "page": "/projects/f899709c-ae2c-4bb9-88f0-131142e6c7ec/export-to-terra", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/f899709c-ae2c-4bb9-88f0-131142e6c7ec/get-curl-command", + "views": 1, + "change": -0.6989247311827957 + }, + { + "page": "/projects/f899709c-ae2c-4bb9-88f0-131142e6c7ec/project-matrices", + "views": 1, + "change": -0.7741935483870968 + }, + { + "page": "/projects/fdadee7e-2097-45d5-bf81-cc280bd8348e/get-curl-command", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/fdadee7e-2097-45d5-bf81-cc280bd8348e/project-matrices", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/projects/fdadee7e-2097-45d5-bf81-cc280bd8348e/project-metadata", + "views": 1, + "change": -0.09677419354838712 + }, + { + "page": "/)", + "views": 0, + "change": -1.0 + }, + { + "page": "/privacy", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/0229ea32-ef02-489e-b11e-ff15819e22c1/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/1f009151-2206-4294-929a-9c720f19a13f", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/4fb36692-6240-4146-a7e6-54543543230c/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6135382f-487d-4adb-9cf8-4d6634125b68/m/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6511b041-b11e-4ccf-8593-2b40148c437e", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6511b041-b11e-4ccf-8593-2b40148c437e/export-to-terra", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/6511b041-b11e-4ccf-8593-2b40148c437e/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/834e0d16-71b6-4425-a8ab-022b5000961c/project-matrices", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/834e0d16-71b6-4425-a8ab-022b5000961c/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/MjAwMzc0Nz", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/aef908bc-feec-4c54-9b3b-78b0adbd6502", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/ccea5717-a848-4c06-8d2d-d1b694e89441/get-curl-command", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/ccea5717-a848-4c06-8d2d-d1b694e89441/project-metadata", + "views": 0, + "change": -1.0 + }, + { + "page": "/projects/samples.4754ce6d-78a3-5f8f-aa97-b9b1ffc18f55.1", + "views": 0, + "change": -1.0 + } +] \ No newline at end of file diff --git a/gh-pages/lungmap/index.html b/gh-pages/lungmap/index.html new file mode 100644 index 000000000..9d9ede90d --- /dev/null +++ b/gh-pages/lungmap/index.html @@ -0,0 +1,857 @@ + + + + + + Analytics + + + + + + + +
+ +
+
+
+ +
+
+

Analytics

+

Loading...

+
+ +
+
+
+

Loading statistics...

+
+
+
+ +
+
+
+

Monthly Traffic Over Time

+
+
+
+
+ +
+
+
+ +
+
+

Monthly Pageviews

+
+
+
+
+ +
+
+
+
+ + + + + +
+
+ + + + + + + + +

General Usage

+ +
+
+

Top Pages

+
+
+
+ + + + + + + + + + + +
PageViewsChange
Loading...
+
+
+ +
+
+

Top Outbound Links

+
+
+
+ + + + + + + + + + + +
LinkClicksChange
Loading...
+
+
+ +
+
+

Filter Selections

+
+
+
+ + + + + + + + + + + + +
Filter NameFilter ValueCountChange
Loading...
+
+
+ +

+ Data sourced from Google Analytics | Generated - +

+
+ + + + From b5110d67973960c67ac8a3625b59b1694d707b9c Mon Sep 17 00:00:00 2001 From: MillenniumFalconMechanic Date: Thu, 30 Apr 2026 13:08:41 -0700 Subject: [PATCH 6/9] docs: fix README to reflect actual API shape #4779 Co-Authored-By: Claude Opus 4.6 (1M context) --- .../analytics_package/analytics/static_site/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/analytics/analytics_package/analytics/static_site/README.md b/analytics/analytics_package/analytics/static_site/README.md index 8019aa9fd..7997b4e6c 100644 --- a/analytics/analytics_package/analytics/static_site/README.md +++ b/analytics/analytics_package/analytics/static_site/README.md @@ -63,16 +63,22 @@ Each app has a `constants.py` file with `CURRENT_MONTH` (e.g., `"2026-03"`). Upd ### Configuration -Each script passes a `config` dict that controls branding and dashboard features: +Each script passes a `config` dict and additional `generate_site()` parameters: +**Config dict** (controls branding and dashboard features): - `site_title` — page heading and browser title - `logo_url`, `logo_link`, `favicon_url` — header branding - `primary_color`, `primary_color_dark` — theme colors +- `entity_label`, `entity_path` — entity type label ("Dataset" or "Project") and URL path prefix - `summary_stats` — top-level stat cards aggregating multiple events - `event_counts` — key metric count cards with labels (supports `\n` for line breaks) - `file_downloads_position` — position of the file downloads card within detail tables + +**`generate_site()` parameters** (passed alongside config): - `custom_events` — list of GA4 events to track, with optional `detail_table`, `page_path_regex`, and `key` for disambiguation - `access_request_urls` — URL patterns for tracking outbound access requests (AnVIL only) +- `title_resolver` — callback to enrich detail records with entity titles +- `historic_data_path` — path to pre-GA4 data (optional) ### Title resolution From 3b52a305288ad1d67a8ff9476c8319a297ad5b1b Mon Sep 17 00:00:00 2001 From: MillenniumFalconMechanic Date: Thu, 30 Apr 2026 13:24:53 -0700 Subject: [PATCH 7/9] fix: use entity_label in access requests title, redeploy gh-pages #4779 Co-Authored-By: Claude Opus 4.6 (1M context) --- .../analytics_package/analytics/static_site/template/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analytics/analytics_package/analytics/static_site/template/index.html b/analytics/analytics_package/analytics/static_site/template/index.html index 65bb35240..97b704b1f 100644 --- a/analytics/analytics_package/analytics/static_site/template/index.html +++ b/analytics/analytics_package/analytics/static_site/template/index.html @@ -800,7 +800,7 @@

${escapeHtml(event.label)} card.style.display = ''; heading.style.display = ''; - card.querySelector('.fui-card-header-title').textContent = `Requests by Dataset (${formatNumber(total)})`; + card.querySelector('.fui-card-header-title').textContent = `Requests by ${entityLabel} (${formatNumber(total)})`; const toggle = document.getElementById('access-requests-toggle'); if (data.length > 5) { From 84963385a713a10a7a36c3b1bcf53bccc25fb09f Mon Sep 17 00:00:00 2001 From: MillenniumFalconMechanic Date: Tue, 5 May 2026 10:33:20 -0700 Subject: [PATCH 8/9] feat: add search queries, file download events, exclude pages, and safeHref #4779 Co-Authored-By: Claude Opus 4.6 (1M context) --- .../analytics_package/analytics/entities.py | 8 ++ .../analytics/static_site/export.py | 14 +++ .../analytics/static_site/fetch.py | 113 ++++++++++++++++- .../analytics/static_site/generator.py | 10 ++ .../analytics/static_site/template/index.html | 115 +++++++++++++++--- 5 files changed, 242 insertions(+), 18 deletions(-) diff --git a/analytics/analytics_package/analytics/entities.py b/analytics/analytics_package/analytics/entities.py index 76492e79f..75dffa850 100644 --- a/analytics/analytics_package/analytics/entities.py +++ b/analytics/analytics_package/analytics/entities.py @@ -132,6 +132,14 @@ "id": "pagePath", "alias": "Page Path", } +DIMENSION_PAGE_PATH_PLUS_QUERY = { + "id": "pagePathPlusQueryString", + "alias": "Page Path Plus Query String", +} +DIMENSION_FILE_NAME = { + "id": "fileName", + "alias": "File Name", +} # The url of the clicked link, only returned in EVENT_BUILTIN_CLICK. Does not include URL fragments DIMENSION_BUILTIN_URL = { "id": "linkUrl", diff --git a/analytics/analytics_package/analytics/static_site/export.py b/analytics/analytics_package/analytics/static_site/export.py index ea586a49d..5213dbf9b 100644 --- a/analytics/analytics_package/analytics/static_site/export.py +++ b/analytics/analytics_package/analytics/static_site/export.py @@ -128,6 +128,20 @@ def export_data(data, config, current_month, analytics_start, custom_events, out json.dump(access_requests, f, indent=2) print(f" Wrote access_requests.json ({len(access_requests)} records)") + # File download events (GA4 enhanced measurement) + print("Exporting file download events data...") + file_download_events = data.get("file_download_events", {"total": 0, "files": []}) + with open(os.path.join(output_dir, "file_download_events.json"), "w") as f: + json.dump(file_download_events, f, indent=2) + print(f" Wrote file_download_events.json ({len(file_download_events.get('files', []))} files)") + + # Search queries + print("Exporting search queries data...") + search_queries = data.get("search_queries", {"total": 0, "queries": []}) + with open(os.path.join(output_dir, "search_queries.json"), "w") as f: + json.dump(search_queries, f, indent=2) + print(f" Wrote search_queries.json ({len(search_queries.get('queries', []))} queries)") + # Custom events print("Exporting custom events data...") events_output = [] diff --git a/analytics/analytics_package/analytics/static_site/fetch.py b/analytics/analytics_package/analytics/static_site/fetch.py index 45fc60ce6..9b9e94de5 100644 --- a/analytics/analytics_package/analytics/static_site/fetch.py +++ b/analytics/analytics_package/analytics/static_site/fetch.py @@ -1,14 +1,19 @@ """Fetch analytics data from GA4 for the static site.""" import re +from urllib.parse import urlparse, parse_qs from .. import sheets_elements as elements from .._sheets_utils import get_data_df_from_fields from ..entities import ( + DIMENSION_BUILTIN_URL, + DIMENSION_FILE_NAME, METRIC_EVENT_COUNT, + METRIC_PAGE_VIEWS, METRIC_SESSIONS, DIMENSION_EVENT_NAME, DIMENSION_PAGE_PATH, + DIMENSION_PAGE_PATH_PLUS_QUERY, DIMENSION_CUSTOM_URL, DIMENSION_ENTITY_NAME, DIMENSION_RELATED_ENTITY_ID, @@ -161,6 +166,68 @@ def get_access_requests(params, url_patterns): return result.to_dict(orient="records") +def get_file_download_events(params): + """Fetch GA4 enhanced measurement file_download events. + + Returns: + Dict with "total" (int) and "files" (list of dicts with "file_name", "link_url", "count"). + """ + df = get_data_df_from_fields( + [METRIC_EVENT_COUNT], + [DIMENSION_EVENT_NAME, DIMENSION_FILE_NAME, DIMENSION_BUILTIN_URL], + dimension_filter="eventName==file_download", + **params, + ) + + if len(df) == 0: + return {"total": 0, "files": []} + + result = df[[DIMENSION_FILE_NAME["alias"], DIMENSION_BUILTIN_URL["alias"], METRIC_EVENT_COUNT["alias"]]].copy() + result.columns = ["file_name", "link_url", "count"] + result["count"] = result["count"].astype(int) + total = int(result["count"].sum()) + result = result.sort_values("count", ascending=False) + + return {"total": total, "files": result.to_dict(orient="records")} + + +def get_search_queries(params, search_path="/search"): + """Fetch search queries by extracting query params from pagePathPlusQueryString. + + Args: + params: Analytics params for the period. + search_path: The search page path prefix (default: "/search"). + + Returns: + Dict with "total" (int) and "queries" (list of dicts with "query" and "count"). + """ + df = get_data_df_from_fields( + [METRIC_PAGE_VIEWS], + [DIMENSION_PAGE_PATH_PLUS_QUERY], + dimension_filter=f"pagePathPlusQueryString=@{search_path}?", + **params, + ) + + if len(df) == 0: + return {"total": 0, "queries": []} + + path_col = DIMENSION_PAGE_PATH_PLUS_QUERY["alias"] + views_col = METRIC_PAGE_VIEWS["alias"] + + aggregated = {} + for _, row in df.iterrows(): + parsed = parse_qs(urlparse(row[path_col]).query) + query = parsed.get("q", parsed.get("query", [""]))[0] + if query: + aggregated[query] = aggregated.get(query, 0) + int(row[views_col]) + + queries = [{"query": q, "count": c} for q, c in aggregated.items()] + queries.sort(key=lambda x: x["count"], reverse=True) + total = sum(q["count"] for q in queries) + + return {"total": total, "queries": queries} + + def fetch_data( ga_authentication, property_id, @@ -169,6 +236,9 @@ def fetch_data( custom_events=None, historic_data_path=None, access_request_urls=None, + exclude_pages=None, + base_dimension_filter=None, + search_path=None, ): """Fetch all analytics data for the static site. @@ -179,6 +249,9 @@ def fetch_data( analytics_start: Start date for all-time data (YYYY-MM-DD). custom_events: List of dicts with "event_name" and "label" keys. historic_data_path: Path to historic UA data JSON file (optional). + exclude_pages: Optional list of page paths to exclude from pageview data. + base_dimension_filter: Optional GA4 dimension filter dict applied to all queries. + search_path: Optional search page path to extract search queries from (e.g., "/search"). Returns: Dict containing DataFrames and stats for each data type. @@ -201,6 +274,8 @@ def fetch_data( "end_date": end_date_current, "property": property_id, } + if base_dimension_filter: + params["base_dimension_filter"] = base_dimension_filter params_all_time = {**params, "start_date": analytics_start, "end_date": end_date_current} params_prior = {**params, "start_date": start_date_prior, "end_date": end_date_prior} @@ -213,15 +288,24 @@ def fetch_data( params, start_date_current, end_date_current, start_date_prior, end_date_prior, ) + if exclude_pages and df_pageviews is not None and len(df_pageviews) > 0: + page_col = DIMENSION_PAGE_PATH["alias"] + df_pageviews = df_pageviews[~df_pageviews[page_col].isin(exclude_pages)] + print(f" Excluded {len(exclude_pages)} page(s) from pageviews") + print("Fetching outbound links data...") df_outbound = elements.get_outbound_links_change( params, start_date_current, end_date_current, start_date_prior, end_date_prior, ) print("Fetching filter selections data...") - df_filter_selected = elements.get_index_filter_selected_change( - params, start_date_current, end_date_current, start_date_prior, end_date_prior, - ) + try: + df_filter_selected = elements.get_index_filter_selected_change( + params, start_date_current, end_date_current, start_date_prior, end_date_prior, + ) + except Exception as e: + print(f" Skipped (not available for this property): {e}") + df_filter_selected = None print("Fetching sessions and engagement data...") df_sessions_current = get_data_df_from_fields( @@ -236,13 +320,32 @@ def fetch_data( engagement_prior = float(df_sessions_prior[METRIC_ENGAGEMENT_RATE["alias"]].mean()) if len(df_sessions_prior) > 0 else 0 print("Fetching file downloads data...") - file_downloads = get_file_downloads(params) + try: + file_downloads = get_file_downloads(params) + except Exception as e: + print(f" Skipped (not available for this property): {e}") + file_downloads = [] access_requests = [] if access_request_urls: print("Fetching access requests data...") access_requests = get_access_requests(params, access_request_urls) + print("Fetching file download events...") + try: + file_download_events = get_file_download_events(params) + except Exception as e: + print(f" Skipped (not available for this property): {e}") + file_download_events = {"total": 0, "files": []} + + search_queries = {"total": 0, "queries": []} + if search_path: + print("Fetching search queries data...") + try: + search_queries = get_search_queries(params, search_path) + except Exception as e: + print(f" Skipped (not available for this property): {e}") + data = { "sessions": { "current": sessions_current, @@ -258,6 +361,8 @@ def fetch_data( "filter_selected": df_filter_selected, "file_downloads": file_downloads, "access_requests": access_requests, + "search_queries": search_queries, + "file_download_events": file_download_events, "dates": { "start_current": start_date_current, "end_current": end_date_current, diff --git a/analytics/analytics_package/analytics/static_site/generator.py b/analytics/analytics_package/analytics/static_site/generator.py index 63c0dd478..3dfb99a52 100644 --- a/analytics/analytics_package/analytics/static_site/generator.py +++ b/analytics/analytics_package/analytics/static_site/generator.py @@ -20,6 +20,9 @@ def generate_site( historic_data_path=None, title_resolver=None, access_request_urls=None, + exclude_pages=None, + base_dimension_filter=None, + search_path=None, ): """Generate a static analytics site. @@ -40,6 +43,10 @@ def generate_site( historic_data_path: Path to historic UA data JSON file (optional). title_resolver: Optional callable that accepts the data dict and enriches detail records with resolved entity titles (e.g., dataset/project names). + exclude_pages: Optional list of page paths to exclude from pageview data. + base_dimension_filter: Optional GA4 dimension filter dict applied to all queries + (e.g., an audience filter to exclude bot/tutorial traffic). + search_path: Optional search page path to extract search queries from (e.g., "/search"). """ if custom_events is None: custom_events = [] @@ -57,6 +64,9 @@ def generate_site( custom_events=custom_events, historic_data_path=historic_data_path, access_request_urls=access_request_urls, + exclude_pages=exclude_pages, + base_dimension_filter=base_dimension_filter, + search_path=search_path, ) if title_resolver: diff --git a/analytics/analytics_package/analytics/static_site/template/index.html b/analytics/analytics_package/analytics/static_site/template/index.html index 97b704b1f..07b6d0464 100644 --- a/analytics/analytics_package/analytics/static_site/template/index.html +++ b/analytics/analytics_package/analytics/static_site/template/index.html @@ -7,7 +7,7 @@ - +