Ensembl data load: Difference between revisions
From genomewiki
Jump to navigationJump to search
No edit summary |
|||
Line 1: | Line 1: | ||
== Load Repeatmasker file == | == Load Repeatmasker file == | ||
* The make things easier, let's set a little shortcut: | |||
export DBSPEC="-dbhost 127.0.0.1 -dbuser ens-training -dbport 3306 -dbname mouse37_mini_ref -dbpass workshop" | |||
* Run repeatmasker on a fasta file: | * Run repeatmasker on a fasta file: | ||
RepeatMasker -species mouse -qq -dir <full_path_to_output_directory> $HOME/workshop/genebuild/test_seqs/test_sequence_to_repeatmask.fa | |||
* Define the type of analysis | * Define the type of analysis | ||
Line 18: | Line 21: | ||
* load the analysis into the mysql database | * load the analysis into the mysql database | ||
$HOME/cvs_checkout/ensembl-pipeline/scripts/analysis_setup.pl $DBSPEC -read -file test.ana | $HOME/cvs_checkout/ensembl-pipeline/scripts/analysis_setup.pl $DBSPEC -read -file test.ana | ||
* see what happened: | |||
SELECT * from analysis;\G | |||
*************************** 1. row *************************** | |||
analysis_id: 1 | |||
created: 2010-09-13 16:14:11 | |||
logic_name: RepeatMask | |||
db: repbase | |||
db_version: 0129 | |||
db_file: repbase | |||
program: RepeatMask | |||
program_version: 3.1.8 | |||
program_file: /path/to/repmasker/RepeatMask | |||
parameters: -nolow -species mouse -s | |||
module: RepeatMask | |||
module_version: NULL | |||
gff_source: RepeatMask | |||
gff_feature: repeat |
Revision as of 15:19, 13 September 2010
Load Repeatmasker file
- The make things easier, let's set a little shortcut:
export DBSPEC="-dbhost 127.0.0.1 -dbuser ens-training -dbport 3306 -dbname mouse37_mini_ref -dbpass workshop"
- Run repeatmasker on a fasta file:
RepeatMasker -species mouse -qq -dir <full_path_to_output_directory> $HOME/workshop/genebuild/test_seqs/test_sequence_to_repeatmask.fa
- Define the type of analysis
[RepeatMask] db=repbase db_version=0129 db_file=repbase program=RepeatMask program_version=3.1.8 program_file=/path/to/repmasker/RepeatMask parameters=-nolow -species mouse -s module=RepeatMask gff_source=RepeatMask gff_feature=repeat input_id_type=CONTIG
- load the analysis into the mysql database
$HOME/cvs_checkout/ensembl-pipeline/scripts/analysis_setup.pl $DBSPEC -read -file test.ana
- see what happened:
SELECT * from analysis;\G *************************** 1. row *************************** analysis_id: 1 created: 2010-09-13 16:14:11 logic_name: RepeatMask db: repbase db_version: 0129 db_file: repbase program: RepeatMask program_version: 3.1.8 program_file: /path/to/repmasker/RepeatMask parameters: -nolow -species mouse -s module: RepeatMask module_version: NULL gff_source: RepeatMask gff_feature: repeat