New pages

From Network for Advanced NMR
Jump to navigationJump to search
New pages
Hide registered users | Hide bots | Show redirects

7 October 2025

  • 17:3117:31, 7 October 2025 USNAN Python SDK/Examples (hist | edit) [1,135 bytes] Mmaciejewski (talk | contribs) (Created page with "= '''Examples''' = == '''Example 1: Facility Summary''' == <syntaxhighlight lang="python"> import usnan client = usnan.USNANClient() for fac in client.facilities.list(): print(f"Facility: {fac.long_name}") for spec in fac.spectrometers: print(f" - {spec.name} ({spec.field_strength_mhz} MHz)") </syntaxhighlight> == '''Example 2: Search for 2D KnowledgeBase Datasets''' == <syntaxhighlight lang="python"> search = ( usnan.models.SearchConfig(records=2...")
  • 17:3017:30, 7 October 2025 USNAN Python SDK/API Reference (hist | edit) [1,689 bytes] Mmaciejewski (talk | contribs) (Created page with "= '''API Reference''' = This section summarizes the main classes and methods exposed by the SDK. == '''usnan.USNANClient''' == The central interface to the API. '''Constructor:''' <syntaxhighlight lang="python"> client = usnan.USNANClient(base_url=None, timeout=30, num_retries=3) </syntaxhighlight> '''Attributes:''' * '''datasets''' – interface for dataset retrieval and search * '''facilities''' – interface for facility data * '''spectrometers''' – interface fo...")
  • 17:2817:28, 7 October 2025 USNAN Python SDK/Getting Started (hist | edit) [1,676 bytes] Mmaciejewski (talk | contribs) (Created page with "= '''Getting Started with the USNAN Python SDK''' = == '''Creating a Client''' == The core entry point is the '''USNANClient''' class. <syntaxhighlight lang="python"> import usnan client = usnan.USNANClient() </syntaxhighlight> By default, it connects to the public API at: <syntaxhighlight> https://dev.api.nmrhub.org </syntaxhighlight> Optional parameters: * '''base_url''' – override the API endpoint * '''timeout''' – request timeout in seconds * '''num_retries''...")
  • 17:2217:22, 7 October 2025 USNAN Python SDK (hist | edit) [2,218 bytes] Mmaciejewski (talk | contribs) (Created page with "= '''USNAN Python SDK''' = The '''USNAN Python SDK''' provides programmatic access to data and metadata from the USNAN Network API. It enables researchers to discover, query, and download datasets, as well as navigate between related entities such as facilities, spectrometers, probes, and knowledgebase resources. This SDK complements the USNAN Data Browser and other web tools available through the USNAN web portal, offering a scripting interface for automation, rep...")

1 August 2025

  • 18:4518:45, 1 August 2025 NAN Archive (hist | edit) [2,990 bytes] Mmaciejewski (talk | contribs) (Created page with "While no system can guarantee perfect security or trust, NAN goes to great lengths to safeguard data in the NAN Archive. The NAN archive is composed of: * Postgres database which holds all metadata records across the entire NAN portal and NDTS * Network attached storage which holds all files associated with datasets * Disaster recovery storage which hold an immutable copy of all datasets Postgres database * The Postgres database is hosted as a virtual machine with a...") Tag: Visual edit

17 July 2025

14 July 2025

  • 15:2615:26, 14 July 2025 Creating an Account (hist | edit) [6,143 bytes] Mmaciejewski (talk | contribs) (Created page with "== Introduction == Creating an '''NMRhub''' account provides access to both '''NMRbox''' (nmrbox.org) and the '''Network for Advanced NMR (NAN)''' (usnan.org), which share the same single sign-on (SSO) system. Before you begin, please note the following: * All account requests are reviewed for eligibility. * If you indicate that you are a '''Principal Investigator (PI)''', your status will be verified. * Account approvals may take up to '''three business days'''....")

10 July 2025

9 July 2025

  • 20:2620:26, 9 July 2025 Feature Summary (hist | edit) [6,580 bytes] Mmaciejewski (talk | contribs) (Created page with "'''== Knowledgebase (KB) Learning Resources ==''' * '''Novice KBs''' – Primers covering the use of NMR across diverse disciplines including proteins, nucleic acids, materials and chemistry, metabolomics, and other biological samples. * '''Expert KB datasets''' – Exemplar datasets on test samples with well vetted pulse programs and supplemented with protocols for sample preparation, experimental setups, data processing, and analysis along with processing scripts and p...") Tag: Visual edit: Switched