gantry | ˈɡantrē |
Run Singularity containers a bit easier! Allows users the ablility to:
- List all currently available singularity images.
- Run single or multiple commands through a singularity container.
$> nslookup sequenceontology.org | |
Server: 172.20.120.20 | |
Address: 172.20.120.20#53 | |
Non-authoritative answer: | |
Name: sequenceontology.org | |
Address: 216.21.224.198 | |
I called the DNS company yesterday and asked them to update the IP of sequenceontology.org to 155.101.145.21 but I believe they reverted | |
it back to 216.21.224.198 based on the nslookup. |
gantry | ˈɡantrē |
Run Singularity containers a bit easier! Allows users the ablility to:
This is a walkthrough of the UCGD Pipeline simplified project setup.
└── UCGD
└── GRCh38
├── Data
│ └── PolishedCrams
└── VCF
└── GVCFs
└── GRCh37
├── Data
│ └── PolishedCrams
## I've testing adding sample as a name and as a path to a file. | |
## I have ran this code and `response.ok` returns true, but the project has no change at the sample level | |
## https://mosaic-staging.chpc.utah.edu/#/projects/459/ | |
def post_sample(mosaic_meta, sample, project_id): | |
path = "{}/projects/{}/samples" | |
url = path.format(mosaic_meta['url'], project_id) | |
headers = { | |
'Authorization' : mosaic_meta['authorization'], |
### ------------------------------------------------------------------- ## | |
def post_sample(mosaic_meta, sample, project_id, data_file): | |
path = "{}/projects/{}/samples" | |
url = path.format(mosaic_meta['url'], project_id) | |
headers = { | |
'Authorization' : mosaic_meta['authorization'], | |
} | |
data = { |
params.fasta = "/kbod2/ReferenceGenomes/GRCh37/human_g1k_v37_decoy_phix.fasta"
params.fai = "/kbod2/ReferenceGenomes/GRCh37/human_g1k_v37_decoy_phix.fai"
params.dbsnp = "/ybod2/cavery/Resources/dbsnp_146.hg38.vcf"
params.reference_mills_1000G = "/ybod2/cavery/Resources/Mills_and_1000G_gold_standard.indels.hg38.vcf"
params.reference_1000G_HighConfSNP = "/ybod2/cavery/Resources/1000G_phase1.snps.high_confidence.hg38.vcf"
params.results = "/ybod2/cavery/gatk_nextflow_files/"