Skip to content

Commit

Permalink
Merge pull request #141 from PathwayCommons/iss130_named-complex
Browse files Browse the repository at this point in the history
Famplex Part III: `namedComplex`
  • Loading branch information
jvwong authored Jun 28, 2023
2 parents 7f8c5af + 23fc466 commit fdce2ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/server/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const DB_PREFIX_FAMPLEX = env('DB_PREFIX_FAMPLEX', 'fplx');
export const FAMPLEX_URL = env('FAMPLEX_URL', 'https://github.com/sorgerlab/famplex/archive/refs/heads/master.zip');
export const FAMPLEX_DIRNAME = env('FAMPLEX_DIRNAME', 'famplex-master');
export const FAMPLEX_FILE_NAME = env('FAMPLEX_FILE_NAME', 'famplex.json');
export const FAMPLEX_TYPE_FILTER = env('FAMPLEX_TYPE_FILTER', 'protein');
export const FAMPLEX_TYPE_FILTER = env('FAMPLEX_TYPE_FILTER', 'all');

export const DB_NAME_HGNC_SYMBOL = env('DB_NAME_HGNC_SYMBOL', 'HGNC Symbol');
export const DB_PREFIX_HGNC_SYMBOL = env('DB_PREFIX_HGNC_SYMBOL', 'hgnc.symbol');
Expand Down
2 changes: 1 addition & 1 deletion src/server/datasource/famplex.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const FAMPLEX_XREFS_FILE = 'equivalences.csv';
const FAMPLEX_SUMMARIES_FILE = 'descriptions.csv';
const FAMPLEX_RELATIONS_FILE = 'relations.csv';
const ENTRY_NS = DB_PREFIX_FAMPLEX;
const ENTRY_TYPE_COMPLEX = 'complex';
const ENTRY_TYPE_COMPLEX = 'namedComplex';
const ENTRY_TYPE_FAMILY = 'protein';
const ENTRY_ORGANISM = '9606';

Expand Down

0 comments on commit fdce2ba

Please sign in to comment.