- 
                Notifications
    You must be signed in to change notification settings 
- Fork 1
Added bedbase output schemas #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
          
     Open
      
      
            khoroshevskyi
  wants to merge
  5
  commits into
  master
  
    
      
        
          
  
    
      Choose a base branch
      
     
    
      
        
      
      
        
          
          
        
        
          
            
              
              
              
  
           
        
        
          
            
              
              
           
        
       
     
  
        
          
            
          
            
          
        
       
    
      
from
bedbase
  
      
      
   
  
    
  
  
  
 
  
      
    base: master
Could not load branches
            
              
  
    Branch not found: {{ refName }}
  
            
                
      Loading
              
            Could not load tags
            
            
              Nothing to show
            
              
  
            
                
      Loading
              
            Are you sure you want to change the base?
            Some commits from the old base branch may be removed from the timeline,
            and old review comments may become outdated.
          
          
  
     Open
                    Changes from 4 commits
      Commits
    
    
            Show all changes
          
          
            5 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      01a1f95
              
                Added output schemas
              
              
                khoroshevskyi d5a35f8
              
                Update schemas/bedbase/output_fairtrack.yaml
              
              
                khoroshevskyi 7ffbb9b
              
                Update schemas/bedbase/output_fairtrack.yaml
              
              
                khoroshevskyi b517182
              
                Update schemas/bedbase/output_fairtrack.yaml
              
              
                khoroshevskyi c70ea29
              
                Update schemas/bedbase/output_schema.yaml
              
              
                khoroshevskyi File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,119 @@ | ||
| description: bedboss fairtrack output schema | ||
|  | ||
| properties: | ||
| samples: | ||
| type: array | ||
| items: | ||
| type: object | ||
| properties: | ||
| local_id: | ||
| type: string | ||
| description: "Name of the bed sample (digest)" | ||
| global_id: | ||
| type: string | ||
| description: "Unique sample identifier of the bed source (e.g. 'encode:ENCBS192PUU', 'geo:GSM1234')" | ||
| species_id: | ||
| type: string | ||
| description: "Taxonomy id based on NCBI database (e.g. taxonomy:9606)" | ||
| species_name: | ||
| type: string | ||
| description: "organism name. (e.g. homo sapiens)" | ||
| biospecimen_class: | ||
| type: string | ||
| description: (e.g. Cell) | ||
| sample_type: | ||
| type: object | ||
| properties: | ||
| cell_type: | ||
| type: string | ||
| description: "cell type (e.g. K562)" | ||
| abnormal_cell_type: | ||
| type: string | ||
| description: ... | ||
| cell_line: | ||
| type: string | ||
| description: "cell line (e.g. C4-2B)" | ||
| organism_part: | ||
| type: string | ||
| description: "(e.g. liver)" | ||
|  | ||
| technique: | ||
| type: string | ||
| description: "Main technique used in experiment (e.g., laboratory, computational or statistical technique)" | ||
| target: | ||
| type: string | ||
| description: "Main target of the experiment (e.g. H3K4_trimethylation)" | ||
| study_reference: | ||
| type: string | ||
| description: Reference identifier of the study | ||
| gene_id: | ||
| type: string | ||
| description: HGNC identifier for gene targeted by the experiment (e.g., specific transcription factor used as ChIP-seq antibody). | ||
| gene_product_type: | ||
| type: string | ||
| description: Gene product type targeted by the experiment (e.g., miRNA) | ||
| macromolecular_structure: | ||
| type: string | ||
| description: Macromolecular structure targeted by the experiment (e.g., chromatin strucure) | ||
| lab_protocol_description: | ||
| type: string | ||
| description: "Free-text description of lab protocol, or URL to such description" | ||
| compute_protocol_description: | ||
| type: string | ||
| description: Free-text description of computational protocol, or URL to such description | ||
|  | ||
| assembly_id: | ||
| type: string | ||
| description: "Genome assembly identifier. e.g. insdc.gca:GCF_000001405.26" | ||
| assembly_name: | ||
| type: string | ||
| description: "Genome assembly name e.g. GRCh38" | ||
| experiment_ref: | ||
| type: string | ||
| description: "Reference to the experiment of the track (e.g., encode:ENCSR000DQP)" | ||
| file_url: | ||
| type: string | ||
| description: "URL to the file" | ||
| file_name: | ||
| type: string | ||
| description: "Name of the file (e.g., ENCFF000VZC.bed.gz)" | ||
| label_short: | ||
| type: string | ||
| description: A short label of the track file. Suggested maximum length is 25 characters | ||
| label_long: | ||
| type: string | ||
| description: A long label of the track file. Suggested maximum length is 80 characters | ||
| file_format: | ||
| type: string | ||
| description: File format (e.g., "bed", "narrowPeak", "broadPeak") | ||
| type_of_condensed_data: | ||
| type: string | ||
| description: (e.g. "Narrow peaks") | ||
| geometric_track_type: | ||
| type: string | ||
| description: (e.g. Segments) | ||
| checksum: | ||
| type: string | ||
| description: Method of checksum generation. (eg. MD5) | ||
|  | ||
| required: | ||
| - local_id | ||
| - species_id | ||
| - biospecimen_class | ||
| - sample_type | ||
| - technique | ||
| - target | ||
| - study_reference | ||
| - assembly_id | ||
| - assembly_name | ||
| - experiment_ref | ||
| - file_url | ||
| - label_short | ||
| - label_long | ||
| - file_format | ||
| - type_of_condensed_data | ||
| - geometric_track_type | ||
| - checksum | ||
|  | ||
| required: | ||
| - samples | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is a pephub output schema, describing minimal columns needed for pephub. BED Attribute Standardizer Output Schema (BASOS) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| description: bedboss output schema | ||
|  | ||
| properties: | ||
| samples: | ||
| type: array | ||
| items: | ||
| type: object | ||
| properties: | ||
| sample_name: | ||
| type: string | ||
| description: "Name of the bed sample (digest)" | ||
| assembly_name: | ||
| type: string | ||
| description: "organism genome code (e.g. hg19, mm10)" | ||
| assembly_id: | ||
| type: string | ||
| description: "Genome assembly identifier - from refgenie" | ||
| bed_type: | ||
| type: string | ||
| description: "bred type (e.g. bed3 / bed6 / bed9+3)" | ||
|         
                  khoroshevskyi marked this conversation as resolved.
              Outdated
          
            Show resolved
            Hide resolved | ||
| pattern: "^bed(?:[3-9]|1[0-5])(?:\+|$)[0-9]?+$" | ||
| format_type: | ||
| type: string | ||
| description: "whether the regions are narrow (transcription factor implies narrow, histone mark implies broad peaks)" | ||
| enum: [ "narrowpeak", "broadpeak", "bed" ] | ||
|         
                  khoroshevskyi marked this conversation as resolved.
              Show resolved
            Hide resolved | ||
| organism: | ||
| type: string | ||
| description: "organism name (e.g. Homo sapiens)" | ||
| species_id: | ||
| type: string | ||
| description: "Taxonomy id based on NCBI database (e.g. taxonomy:9606)" | ||
| cell_type: | ||
| type: string | ||
| description: "cell type (e.g. K562)" | ||
| cell_line: | ||
| type: string | ||
| description: "cell line (e.g. C4-2B)" | ||
| exp_protocol: | ||
| type: string | ||
| description: "Molecular biology technique that was used in the experiment (e.g. DNase-seq, TF ChIP-seq, histone ChIP-seq, ATAC-seq)" | ||
| library_source: | ||
| type: string | ||
| description: "(e.g. genomic DNA, DNA, mRNA)" | ||
| target: | ||
| type: string | ||
| description: "The target of the experiment (e.g. H3K36me3)" | ||
| antibody: | ||
| type: string | ||
| description: "antibody used in the experiment (anti-H3K36me3)" | ||
| tissue: | ||
| type: string | ||
| description: "Tissue or organ used in the experiment (e.g blood / liver / brain)" | ||
| treatment: | ||
| type: string | ||
| description: "Treatment applied to the sample" | ||
| global_sample_id: | ||
| type: string | ||
| description: "Unique sample identifier of the bed source (e.g. 'encode:ENCBS192PUU', 'geo:GSM1234')" | ||
| global_experiment_id: | ||
| type: string | ||
| description: "Unique experiment identifier of the bed source (e.g. 'encode:ENCSR000EOT', 'geo:GSE1234')" | ||
| description: | ||
| type: string | ||
| description: "freeform description of the sample" | ||
| file_url: | ||
| type: string | ||
| description: "URL to the bed file" | ||
| file_name: | ||
| type: string | ||
| description: "Name of the bed file" | ||
|  | ||
| required: | ||
| - sample_name | ||
| - genome | ||
| - bed_type | ||
| - format_type | ||
| - file_url | ||
| - file_name | ||
|  | ||
| required: | ||
| - samples | ||
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.