The largest database of trusted experimental protocols
> Living Beings > Age Group > Child

Child

Child: A young human being between the stages of infancy and adolescence.
In the medical literature, a child is generally defined as a person 12 years of age or younger, although the upper limit may vary.
The child undergoes significant physical, mental, emotional and social developments during this life stage, making childhood a crucial period for healthy growth and development.
PubCompare.ai's AI-driven platform revolutionizes child resesarch protocols, empowering researchers to access the most reliable and up-to-date child research information seamlessly for enhanced reproducibility and accuracy.

Most cited protocols related to «Child»

To create the annotations network ClueGO provides predefined functional analysis settings ranging from general to very specific ones. Furthermore, the user can adjust the analysis parameters to focus on terms, e.g. in certain GO level intervals, with particular evidence codes or with a certain number and percentage of associated genes. An optional redundancy reduction feature (Fusion) assesses GO terms in a parent–child relation sharing similar associated genes and preserves the more representative parent or child term. The relationship between the selected terms is defined based on their shared genes in a similar way as described by Huang et al. (2007 (link)). ClueGO creates first a binary gene-term matrix with the selected terms and their associated genes. Based on this matrix, a term–term similarity matrix is calculated using chance corrected kappa statistics to determine the association strength between the terms. Since the term–term matrix is of categorical origin, kappa statistic was found to be the most suitable method. Finally, the created network represents the terms as nodes which are linked based on a predefined kappa score level. The kappa score level threshold can initially be adjusted on a positive scale from 0 to 1 to restrict the network connectivity in a customized way. The size of the nodes reflects the enrichment significance of the terms. The network is automatically laid out using the Organic layout algorithm supported by Cytoscape. The functional groups are created by iterative merging of initially defined groups based on the predefined kappa score threshold. The final groups are fixed or randomly colored and overlaid with the network. Functional groups represented by their most significant (leading) term are visualized in the network providing an insightful view of their interrelations. Also other ways of selecting the group leading term, e.g. based on the number or percentage of genes per term are provided. As an alternative to the kappa score grouping the GO hierarchy using parent–child relationships can be used to create functional groups.
When comparing two gene clusters, another original feature of ClueGO allows to switch the visualization of the groups on the network to the cluster distribution over the terms. Besides the network, ClueGO provides overview charts showing the groups and their leading term as well as detailed term histograms for both, cluster specific and common terms.
Like BiNGO, ClueGO can be used in conjuntion with GOlorize for functional analysis of a Cytoscape gene network. The created networks, charts and analysis results can be saved as project in a specified folder and used for further analysis.
Publication 2009
Child Gene Clusters Gene Regulatory Networks Genes Genes, vif Parent

fastp supports automatic adapter trimming for both single-end and paired-end Illumina data and uses different algorithms for each of these tasks. For single-end data, adapter sequences are detected by assembling the high-frequency read tails; for paired-end data, adapter sequences are detected by finding the overlap of each pair.
The adapter-sequence detection algorithm is based on two assumptions: the first is that only one adapter exists in the data; the second is that adapter sequences exist only in the read tails. These two assumptions are valid for major next-generation sequencers like Illumina HiSeq series, NextSeq series and NovaSeq series. We compute the k-mer (k = 10) of first N reads (N = 1 M). From this k-mer, the sequences with high occurrence frequencies (>0.0001) are considered as adapter seeds. Low-complexity sequences are removed because they are usually caused by sequencing artifacts. The adapter seeds are sorted by its occurrence frequencies. A tree-based algorithm is applied to extend the adapter seeds to find the real complete adapter, which is described by the pseudo code in Algorithm 1.
In Algorithm 1, the function build_nucleotide_tree() is used to convert a set of sequences to a tree, in which each node is a nucleotide and each path of root to leaf is a sequence. A node’s dominant child is defined as its major child with a dominant percentage (>90%). This algorithm tries to extend an adapter seed in the forward direction to check its validity since a valid adapter can always be extended to the read tails. And if this adapter seed is valid, a backward extension is applied to obtain the complete adapter sequence. The process of extending an adapter seed in forward and backward directions is given in Figure 2.
For paired-end data, fastp seeks the overlap of each pair and considers the bases that fall out of the overlapped regions as adapter contents. The overlapping detection algorithm was derived from our previous work, AfterQC. Compared to sequence-matching-based adapter-trimming tools like Cutadapt and Trimmomatic, a clear advantage of the overlap-analysis-based method is that it can trim adapters with few bases in the read tail. For example, most sequence-matching-based tools require a hatchment of at least three bases and cannot trim adapters with only one or two bases. In contrast, fastp can trim adapters with even only one base in the tail.
Although fastp can detect adapter sequences automatically, it also provides interfaces to set specific adapter sequences for trimming. For SE data, if an adapter sequence is given, then automatic adapter-sequence detection will be disabled. For PE data, the adapter sequence will be used for sequence-matching-based adapter trimming only when fastp fails to detect a good overlap in the pair.
Publication 2018
Child Nucleotides Plant Leaves Plant Roots Tail Trees
This study is limited to spirometric indices, analysis of data on lung volumes and transfer factor being deferred to a later stage. Prediction equations were derived for the FEV1, FVC and FEV1/FVC across the entire age range. For children aged 3–7 years (an age range chosen because the forced expiratory time usually exceeds 1 s in older children), the FEV075 and FEV075/FVC were also derived. Data on FEV0.75, FEV0.75/FVC and forced expired flow when 75% of the FVC has been exhaled (FEF75) were available only for Caucasians. Data (N=36,831) on FEF25–75% were available in 21 datasets. As very few data became available on FEV0.5, this index was not analysed.
Publication 2012
Caucasoid Races Child Lung Volumes Spirometry Transfer Factor

fastp is designed for multi-threading parallel processing. Reads loaded from FASTQ files will be packed with a size of N (N = 1000). Each pack will be consumed by one thread in the pool, and each read of the pack will be processed. Each thread has an individual context to store statistical values of the reads it processes, such as per-cycle quality profiles, per-cycle base contents, adapter trimming results and k-mer counts. These values will be merged after all reads are processed, and a reporter will generate reports in HTML and JSON formats. fastp reports statistical values for pre-filtering and post-filtering data to facilitate comparisons of changes in data quality after filtering is complete.
fastp supports single-end (SE) and paired-end (PE) data. While most steps of SE and PE data processing are similar, PE data processing requires some additional steps such as overlapping analysis. For the sake of simplicity, we only demonstrate the main workflow of paired-end data preprocessing, shown in Figure 1.
Algorithm 1 adapter sequence detection

for seed in sorted_adapter_seeds:

 seqs_after_seed = get_seqs_after(seed)

 forward_tree = build_nucleotide_tree(seqs_after_seed)

 found = True

 node = forward_tree.root

 after_seed = “”

 while node.is_not_leaf():

  if node.has_dominant_child():

   node = node.dominant_child()

   after_seed = after_seed + node.base

  else:

   found = False

   break

 if found == False:

  continue

 else:

  seqs_before_seed = get_seqs_before(seed)

  backward_tree = build_nucleotide_tree(seqs_before_seed)

  node = backward _tree.root

  before_seed = “”

  while node.is_not_leaf():

   if node.has_dominant_child():

     node = node.dominant_child()

     before_seed = node.base + before_seed

   else:

     break

 adapter = before_seed + seed + after_seed

 break

Publication 2018
Base Sequence Child Nucleotides Plant Leaves Plant Roots Trees
Carcinogenic and mutagenic risk assessments15 (link),60 (link)–63 (link),67 (link)–69 (link) induced by inhalation of PM2.5-bound enriched with selected nitro-PAHs (1-NPYR, 2-NPYR, 2-NFLT, 3-NFLT, 2-NBA, and 3-NBA) and PAHs (PYR, FLT, BaP, and BaA) were estimated in the bus station and coastal site samples according to calculations done by Wang et al.60 (link), Nascimento et al.61 (link), and Schneider et al.67 (link) PAH and PAH derivatives risk assessment is done in terms of BaP toxicity, which is well established67 (link)–73 (link). The daily inhalation levels (EI) were calculated as: EI=BaPeq×IR=(Ci×TEFi)×IR where EI (ng person−1 day−1) is the daily inhalation exposure, IR (m³ d−1) is the inhalation rate (m³ d−1), BaPeq is the equivalent of benzo[a]pyrene (BaPeq = Σ Ci × TEFi) (in ng m−3), Ci is the PM2.5 concentration level for a target compound i, and TEFi is the toxic equivalent factor of the compound i. TEF values were considered those from Tomaz et al.15 (link), Nisbet and LaGoy69 (link), OEHHA72 , Durant et al.73 (link), and references therein. EI in terms of mutagenicity was calculated using equation (1), just replacing the TEF data by the mutagenic potency factors (MEFs) data, published by Durant et al.73 (link). Individual TEFs and MEFs values and other data used in this study are described in SI, Table S4.
The incremental lifetime cancer risk (ILCR) was used to assess the inhalation risk for the population in the Greater Salvador, where the bus station and the coastal site are located. ILCR is calculated as: ILCR=(EI×SF×ED×cf×EF)/(AT×BW) where SF is the cancer slope factor of BaP, which was 3.14 (mg kg−1 d−1)−1 for inhalation exposure60 (link), EF (day year−1) represents the exposure frequency (365 days year−1), ED (year) represents exposure duration to air particles (year), cf is a conversion factor (1 × 10−6), AT (days) means the lifespan of carcinogens in 70 years (70 × 365 = 25,550 days)70 ,72 , and BW (kg) is the body weight of a subject in a target population71 .
The risk assessment was performed considering four different target groups in the population: adults (>21 years), adolescents (11–16 years), children (1–11 years), and infants (<1 year). The IR for adults, adolescents, children, and infants were 16.4, 21.9, 13.3, 6.8 m3 day−1, respectively. The BW was considered 80 kg for adults, 56.8 kg for adolescents, 26.5 kg for children and 6.8 kg for infants70 .
Full text: Click here
Publication 2019
Adolescent Adult Benzo(a)pyrene Body Weight Carcinogens Child derivatives Factor X Fibrinogen fluoromethyl 2,2-difluoro-1-(trifluoromethyl)vinyl ether Health Risk Assessment Infant Inhalation Inhalation Exposure Malignant Neoplasms Mutagens Polycyclic Hydrocarbons, Aromatic Population at Risk Population Group Respiratory Rate

Most recents protocols related to «Child»

Not available on PMC !

Example 30

The version control system of any preceding example, wherein the version control system is configured to determine records of a first copy of a database that have changed in the child branch; and determine records in a second copy of the database that have changed in a parent branch.

Full text: Click here
Patent 2024
Child Parent
Not available on PMC !

Example 25

The version control system of any preceding example, wherein the version information for the individual objects is held in a child branch that has the first branch as its parent branch, and includes one or more revisions of the individual objects made in the past in the parent branch.

Full text: Click here
Patent 2024
ARID1A protein, human Child Parent

Example 10

Stability Study

In accordance with various embodiments, formulations in accordance with various embodiments have an exemplary shelf life of 3 months with storage at 25±2° C./60±5% RH in 75 cc HDPE white, opaque bottles with a 38/400 mm white child resistant cap.

Packaging during testing comprises a 75 cc round HDPE bottle and 33 mm cap. A Brasken FPT 300F resin is associated with the cap. Testing criteria include visual appearance, assay of progesterone, dissolution, content uniformity and microbial limits testing.

Three test groups are created. Test group 1 comprises a test at 40° C./75% RH. Test group 2 comprises a test at 30° C./65% RH. Test group 3 comprises a test at 25° C./60% RH. Test group 1 is tested for visual appearance, assay of ultra-micronized progesterone, and dissolution at months 1, 2, 3, and 6. Test group 2 is tested for visual appearance, assay of ultra-micronized progesterone, and dissolution at months 0, 1, 2, 3, 6, and 12. Test group 3 is tested for visual appearance, assay of ultra-micronized progesterone, and dissolution at months 0, 1, 2, 3, 6, 12 and 24.

Full text: Click here
Patent 2024
Biological Assay Child Polyethylene, High-Density Progesterone Resins, Plant
Not available on PMC !

Example 7

The version control system of any preceding example, wherein the one or more modified branches are child branches of the third branch.

The method of any preceding example, wherein assembling the first change set includes determining a current state of each database table in the first branch, wherein assembling the second change set includes determining a current state of each database table in the second branch, and wherein the determining that a direct conflict is present includes comparing the state of database tables in the first branch with the state of corresponding database tables in the second branch.

Full text: Click here
Patent 2024
Child
Not available on PMC !

Example 23

The version control system of any preceding example, wherein the one or more branches include at least one object type defining the type of objects of the one or more objects that can be stored in the individual branches; a live environment to which objects of the individual branches are deployed to or imported from; and at least one integration rule defining a process by which child objects are merged into a parent branch associated with the individual branches.

Full text: Click here
Patent 2024
Child Parent

Top products related to «Child»

Sourced in United States, Austria, Japan, Cameroon, Germany, United Kingdom, Canada, Belgium, Israel, Denmark, Australia, New Caledonia, France, Argentina, Sweden, Ireland, India
SAS version 9.4 is a statistical software package. It provides tools for data management, analysis, and reporting. The software is designed to help users extract insights from data and make informed decisions.
Sourced in United States, Austria, Japan, Belgium, United Kingdom, Cameroon, China, Denmark, Canada, Israel, New Caledonia, Germany, Poland, India, France, Ireland, Australia
SAS 9.4 is an integrated software suite for advanced analytics, data management, and business intelligence. It provides a comprehensive platform for data analysis, modeling, and reporting. SAS 9.4 offers a wide range of capabilities, including data manipulation, statistical analysis, predictive modeling, and visual data exploration.
Sourced in United States, Denmark, Austria, United Kingdom, Japan, Canada
Stata version 14 is a software package for data analysis, statistical modeling, and graphics. It provides a comprehensive set of tools for data management, analysis, and reporting. Stata version 14 includes a wide range of statistical techniques, including linear regression, logistic regression, time series analysis, and more. The software is designed to be user-friendly and offers a variety of data visualization options.
Sourced in United States, United Kingdom, Austria, Denmark
Stata 15 is a comprehensive, integrated statistical software package that provides a wide range of tools for data analysis, management, and visualization. It is designed to facilitate efficient and effective statistical analysis, catering to the needs of researchers, analysts, and professionals across various fields.
Sourced in United States, Denmark, United Kingdom, Belgium, Japan, Austria, China
Stata 14 is a comprehensive statistical software package that provides a wide range of data analysis and management tools. It is designed to help users organize, analyze, and visualize data effectively. Stata 14 offers a user-friendly interface, advanced statistical methods, and powerful programming capabilities.
Sourced in United States, Japan, United Kingdom, Germany, Belgium, Austria, Spain, France, Denmark, Switzerland, Ireland
SPSS version 20 is a statistical software package developed by IBM. It provides a range of data analysis and management tools. The core function of SPSS version 20 is to assist users in conducting statistical analysis on data.
Sourced in United States, Denmark, United Kingdom, Austria, Sweden
Stata 13 is a comprehensive, integrated statistical software package developed by StataCorp. It provides a wide range of data management, statistical analysis, and graphical capabilities. Stata 13 is designed to handle complex data structures and offers a variety of statistical methods for researchers and analysts.
Sourced in United States, United Kingdom, Japan, Austria, Germany, Denmark, Czechia, Belgium, Sweden, New Zealand, Spain
SPSS version 25 is a statistical software package developed by IBM. It is designed to analyze and manage data, providing users with a wide range of statistical analysis tools and techniques. The software is widely used in various fields, including academia, research, and business, for data processing, analysis, and reporting purposes.
Sourced in United States, United Kingdom, Denmark, Austria, Belgium, Spain, Australia, Israel
Stata is a general-purpose statistical software package that provides a comprehensive set of tools for data analysis, management, and visualization. It offers a wide range of statistical methods, including regression analysis, time series analysis, and multilevel modeling, among others. Stata is designed to facilitate the analysis of complex data sets and support the entire research process, from data import to report generation.

More about "Child"

Childhood is a critical stage of human development, encompassing the transformative years between infancy and adolescence.
During this formative period, individuals undergo significant physical, mental, emotional, and social changes, laying the foundation for their future well-being.
The term 'child' is typically defined as a person 12 years of age or younger, although the precise upper limit may vary across contexts and disciplines.
Researchers and medical professionals often utilize this age range when investigating various aspects of child development, including growth patterns, cognitive abilities, behavioral traits, and socialization processes.
To enhance the reproducibility and accuracy of child-related research, innovative platforms like PubCompare.ai have emerged.
Powered by advanced AI algorithms, these tools enable seamless access to the most reliable and up-to-date child research information from literature, preprints, and patents.
Researchers can leverage these platforms to compare and identify the most robust research protocols, ensuring enhanced precision and reliability in their studies.
The analysis of child-centric data often involves the use of statistical software such as SAS (versions 9.4 and above), Stata (versions 13, 14, 15, and beyond), and SPSS (versions 20 and 25).
These software packages offer a wide range of functionalities tailored to the unique needs of child research, facilitating the exploration of developmental trends, the identification of risk factors, and the evaluation of interventions.
Embracing these technological advancements, researchers can delve deeper into the complex and multifaceted world of childhood, unlocking new insights that contribute to the betterment of children's lives and the overall well-being of societies.